Guest User

Untitled

a guest
Nov 16th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function hoistingEx(){
  2.  
  3. console.log(one + two);
  4.  
  5. var one = 1; //Variable initialization
  6. var two = 2; //Variable initialization
  7. }
  8.  
  9. hoistingEx()
  10.  
  11. //Output NaN
Add Comment
Please, Sign In to add comment