Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // Block scope
  2.  
  3. if (true) {
  4. var name = 'John';
  5. let address = 'Hawaii'
  6. }
  7. console.log(name)
  8.  
  9. console.log(address) // error
  10.  
  11. // Function scope
  12. setTimeout(function(){
  13. var age = '100'
  14. }, 2000)
  15.  
  16. console.log(age) // error
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement