You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
즉시 실행 함수 표현식(IIFE, Immediately-Invoked Function Expression)
즉시 실행 함수를 사용하면 함수가 실행되고 전역에서 사라진다. 이 방법으로 라이브러리를 많이 만들곤 한다.
(functionmoduleFunction(){vara=3;functionhelloWorld(){console.log('Hello');}helloWorld();//Hello})();helloWorld();//Uncaught ReferenceError: helloWorld is not defined
즉시실행함수가 실행되고 전역에서 사라지기 때문에 그 밖에선 출력 값이 에러가 발생하는 것을 볼 수 있다.
🙏 Reference
The text was updated successfully, but these errors were encountered: