什么是时间死区?我听说let和const值初始化前会导致ReferenceError因为一种叫做时间死区.什么是时间死区,它与范围和提升有什么关系,在什么情况下遇到?
3 回答
哆啦的时光机
TA贡献1779条经验 获得超6个赞
let sum = a + 5; //---------//some other code // | ------> this is TDZ for variable a // |console.log(sum) //---------let a = 5;
let sum = a + 5; console.log(sum) //prints 10var a = 5;
添加回答
举报
0/150
提交
取消