javascript-undefined-description

先看一个例子: var a; console.log(a);//undefined console.log(typeof(a)); //undefined javascript中的数据类型包括 undefined , null , boolean , number , string , boolean 六种类型(ECMAScript 2015) undefined 小结 undefined 类型的意思是当前对象未定义,适用于下面几种情况 变...