Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. let x = 0;
  2. console.log(x);
  3.  
  4. if (true) {
  5. let x = 1
  6. console.log(x);
  7. }
  8.  
  9. console.log(x);
  10.  
  11. // Output :
  12. // 0
  13. // 1
  14. // 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement