Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function b() {
  2.     var myVar;
  3.     console.log(myVar);
  4. }
  5.  
  6. function a() {
  7.     var myVar = 2;
  8.     console.log(myVar);
  9.     b();
  10. }
  11.  
  12. var myVar = 1;
  13. console.log(myVar);
  14. a();
  15. console.log(myVar);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement