[JS] 关于变量作用域的 undefined 和 error

Posted wanyi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[JS] 关于变量作用域的 undefined 和 error相关的知识,希望对你有一定的参考价值。

在代码块外

声明前使用

a
> Uncaught ReferenceError: a is not defined

声明前用typeof

typeof b
> "undefined"

声明未赋值就使用

var c;
c
> "undefined"

在代码块内

没有声明就用

if (true) {
    a;
}
> Uncaught ReferenceError: a is not defined
if (true) {
    typeof a;
}
> "undefined"

声明前调用/用typeof

if (true) {
    a;
    let a = 10;
}
> Uncaught ReferenceError: a is not defined
if (true) {
    typeof a;
    let a = 10;
}
> Uncaught ReferenceError: a is not defined

分析

在代码块内,JS引擎遇到 var时会把它提到代码块最前,遇到let或者const时会把它加入到暂时性死区(Temporal Dead Zone),在TDZ内访问letconst变量都会产生runtime error,只有遇到声明语句时才会把它从TDZ里移出并正常使用。

以上是关于[JS] 关于变量作用域的 undefined 和 error的主要内容,如果未能解决你的问题,请参考以下文章

Js基础27:作用域

关于 js 的作用域的对话过程的理解

基础知识回顾——js作用域

深入理解js的变量提升和函数提升

js学习日记-变量的坑

js 关于闭包的小总结