typeof
2019-02-25 本文已影响0人
newway_001
var a;
console.log(a);//undefined
console.log(typeof(typeof a));//string typeof输出的是字符串
console.log(typeof a);//'undefined'
var a;
console.log(a);//undefined
console.log(typeof(typeof a));//string typeof输出的是字符串
console.log(typeof a);//'undefined'