728x90
let x = 1;
function func() {
console.log(x); // ?
// dead zone
let x = 2;
}
func();
// Error

+ Recent posts