Advertisement
Guest User

Untitled

a guest
May 24th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. //global Scope 글로벌 스코프
  2. var g =1;
  3. //부모가 더 이상 없는 스코프가 global 스코프이다. 전역 스코프(범위)
  4. //global variable(전역 변수), global object(전역 객체)
  5. //브라우저 환경에서 전역 객체로 window가 있다.
  6.  
  7. function bar(){
  8. //bar function scope
  9. function foo3(){
  10. //foo3 function scope
  11. console.log(g);
  12. }
  13. foo3();
  14. }
  15. bar();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement