Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let x=4;
  2. var y=5;
  3. console.log(y); //5
  4. {
  5.     let x = 3;
  6.       var y = 12;
  7.     console.log(x); // 3
  8. }
  9. console.log(x); // 4
  10. console.log(y); //12
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement