1. 종류

1.1. Decorator

1.2. Revealing

const testFunc = (() => {
	const a = 1
	const b = {
		v: 2
	}
	return b
})

console.log(testFunc)   // { v: 2 }
console.log(testFunc.a) // undefined