+ 2
Can somebody explain this output?
I know the variable let is scoped but in this case it is still within the scope/brackets of the function. So why is the let variable within the boolean of the function considered different from the first one as it is still within the scope of the same function? function letTest() { let x = 1; if (true) { let x = 2; // different variable console.log(x); // 2 } console.log(x); // 1 }
1 Respuesta
+ 4
there are two (three) types of variables scope in JS:
var => function/global scoped
let, const => block scoped
(arguments => function scoped)
arguments scope wrap functions scope wich wrap blocks scopes...