了解下es6中的let、const暂时性死区
关于TDZ(暂时性死区的小知识) # es6示例代码 es6中,下面的代码执行后会报ReferenceError: a is not defined的错误 let a = 'global'{ console.log(a) // ReferenceError: a is not defined let a = 1}原因: console.log(a) 中的 a 指的是下面的 a,而不是...