HomoCivicus

Hoisting

Feb 8th, 2023 (edited)
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const x = 1;
  2. if (x)
  3. {
  4.   console.log(x);
  5.   const x = 2;
  6. }
Add Comment
Please, Sign In to add comment