Guest User

Untitled

a guest
Aug 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. if(true) {
  2. v = 9;
  3. }
  4. var v;
  5. console.log(v) //prints 9
  6.  
  7. if(true) {
  8. v = 9;
  9. }
  10. let v;
  11. console.log(v) //error
Add Comment
Please, Sign In to add comment