Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. JS: For this Code:
  2. function foo() {
  3. let x = 31;
  4. var y = 31;
  5. if (true) {
  6. let x = 71;
  7. var y = 71;
  8. console.log(x);
  9. console.log(y);
  10. }
  11. console.log(x);
  12. console.log(y);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement