Advertisement
Guest User

Untitled

a guest
May 24th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. //Immediately Invoked Function Expression
  2. //즉시 실행 함수
  3. //IIFE 이피
  4. (function(){})();
  5. //만들자마자 즉시 실행
  6. (function(){
  7. var a =1;
  8. function foo(){
  9. var b =2;
  10. console.log(a);
  11. console.log(b);
  12. }
  13. foo();
  14. })();
  15. foo();//foo() 스코프 밖이라 접근할 수 없다.
  16. //즉시 실행 함수는 범위를 만들어낸다.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement