Advertisement
wingman007

JavaScriptHoisting

Jun 12th, 2016
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // 1. Attempt to use "a" which is not declared in the body of the function
  2. (function(){
  3.     consloe.log(a); // this expression statements throws an exception
  4. })();
  5.  
  6. VM78:3 Uncaught ReferenceError: consloe is not defined()
  7.  
  8.  
  9. // 2. No error, but the variable is undefined. It gets hoisted to the top.
  10. (function(){
  11.     console.log(a); // a exists but it is undefined
  12.     var a = 5;
  13. })();
  14.  
  15. VM81:3 undefined
  16. undefined
  17.  
  18.  
  19. // 3. After the declaration statement the variable has value;
  20. (function(){
  21.     console.log(a); // a exists but it is not defined
  22.     var a = 5;
  23.     console.log(a); // a has value
  24. })();
  25.  
  26. VM82:3 undefined
  27. VM82:5 5
  28. undefined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement