undefined 与 xx is not defined 的区别
Posted mycnblogs-guoguo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了undefined 与 xx is not defined 的区别相关的知识,希望对你有一定的参考价值。
undefined 与 xx is not defined 的区别
1. undefined 表示是javascript中的一种数据类型,当被定义的变量没有被赋值或者某个被调用的函数没有定义返回值时候会产生。
2. xx is not defined 是一种语法错误,表示xx变量没有被定义。
例1:undefined示例
代码:
1 console.log(num); 2 var num ; //定义了全部变量num,但是没有初始化赋值
运行结果:
例2:xx is not defined 示例
代码:
1 console.log(num); //变量 num 未被定义 2 //var num ;
运行结果:
例3:undefined 示例
代码:
1 function testFuc (){ 2 var num = 0; 3 num = num+1; 4 } 5 6 console.log(testFuc());
运行结果:
说明:
【js代码的执行顺序问题】
js代码在运行时,会分为两大部分。检查装载和执行阶段。
检查装载阶段:会先检测代码的语法错误,进行变量、函数的声明
执行阶段:变量的赋值、函数的调用等,都属于执行阶段。
以上是关于undefined 与 xx is not defined 的区别的主要内容,如果未能解决你的问题,请参考以下文章
this.props.logged in is not a function is undefined
undefined-is-not-an-object-evaluate-this-state-datasource.map
我不断收到 TypeError: undefined is not a function
出现 The processing instruction target matching "[xX][mM][lL]" is not allowed错误