undefined、null与NaN的区别
1. 含义
undefined: 表示变量应该有值,但未赋值。其类型是undefined 。
null: 表示定义了一个空对象 ( 内存地址指向为空 )。其类型是object 。
NaN: 表示非数字 ( Not a number )。其类型是number 。( Q: 既然表示非数字,为何其类型却是number? )
2. typeof、==、===的区别
typeof undefined;
typeof null;
typeof NaN;
undefined == null;
undefined == NaN;
NaN == null;
undefined === null;
undefined === NaN;
NaN === null;
3. JSON.stringify、toString的区别
const obj = { property1: undefined, property2: null, property3: NaN };
const arr = [ undefined, null, NaN ];
console.log(JSON.stringify(obj));
console.log(JSON.stringify(arr));
console.log(obj.toString());
console.log(arr.toString());
因JSON.stringify 、Array.prototype.toString 中的参数中有undefined、null、NaN时,结果可能非我们预期。故使用JSON.stringfy 深拷贝对象或使用Array.prototype.toString 扁平化数组时,应评估其结果的影响。
|