代码
提交代码
function block() { if (true) { let a = 10 console.log(a) // 10 } console.log(a) // Cannot find name 'a'.ts(2304) }
运行结果