暂时性死区
Posted l8l8
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了暂时性死区相关的知识,希望对你有一定的参考价值。
function go(n) { // n here is defined! console.log(n); // Object {a: [1,2,3]} for (let n of n.a) { // ReferenceError 这就算是暂时性死区 因为在这个作用域内改变了被声明以后 是不可以提前调用的。 console.log(n); } } go({a: [1, 2, 3]});
以上是关于暂时性死区的主要内容,如果未能解决你的问题,请参考以下文章