Advertisement
Guest User

Untitled

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