Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. let x = 1;
  2.  
  3. if (x === 1) {
  4. let x = 2;
  5.  
  6. console.log(x);
  7. // expected output: 2
  8. }
  9.  
  10. console.log(x);
  11. // expected output: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement