我们先来看 null 和 undefined 的相同之处:
- 二者在转为布尔值时均为 false
if (!null) { console.log('null is converted to false!');}
if (!undefined) { console.log('undefined is converted to false!);}
- 二者在不严格相等的情况下是等价的
console.log(null == undefined); // 结果为true
再来比较一下区别:
- 二者类型不一致;
console.log(typeof null); // 结果为 Object
console.log(typeof undefined); // 结果为 undefined,undefined为undefined类型的唯一一个值
- 转为数值时结果不同;
null + 5; // 结果为 5
undefined + 5; // 结果为NaN
null 是一个表示 “无” 的对象,转为数值时为 0;
undefined 是一个表示 “无”的原始值,转为数值时为 NaN。
典型用法不一致
null 表示”没有对象”,即该处不应该有值。典型用法是:
(1) 作为函数的参数,表示该函数的参数不是对象。
(2) 作为对象原型链的终点。undefined 表示”缺少值”,就是此处应该有一个值,但是还没有定义。典型用法是:
(1) 变量被声明了,但没有赋值时,就等于undefined。
(2) 调用函数时,应该提供的参数没有提供,该参数等于undefined。
(3) 对象没有赋值的属性,该属性的值为undefined。
(4) 函数没有返回值时,默认返回undefined。
参考文章:
阮一峰:http://www.ruanyifeng.com/blog/2014/03/undefined-vs-null.html