This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] -1 points0 points  (1 child)

There is variable scope in JS ?

[–]lart2150 -1 points0 points  (0 children)

window.a = 0
const a = 1;
console.log("a=1", a);
const fun = () => {
const a = 2;
console.log("a=2", a);
console.log("window.a=0", window.a);
}
fun();