Guest User

Untitled

a guest
Nov 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // Scope example of a global function
  2.  
  3. var global_variable = 5;
  4.  
  5. function simplefunc() {
  6. console.log(global_variable);
  7. }
  8.  
  9. simplefunc(); // prints '5' => 당연!
  10. global_variable = 6;
  11. simplefunc(); // prints '6' => 역시 당연!
Add Comment
Please, Sign In to add comment