let x = 'global';
function testScope() {
console.log(x);
if (true) {
let x = 'block';
var y = 'function';
console.log(x);
}
console.log(x);
console.log(y);
}
testScope();
Post #3038
3.08K
CHALLENGE
- 🔥 7
- 👍 3
- ❤ 1