undefined和null

2018-11-12  本文已影响0人  lovinglili

undefined

undefined类型,变量声明没初始化的时候返回的是undefined,转为数值为NAN,派生自null;

典型用法

null

Null类型,代表一个空对象指针,typeof null 为object类型,转为数值为0

典型用法

关联

null==undefined true
null===undefined false

null和undefined不能进行类型转换,
null和undefined和任何有意义的值相比都是返回false;

上一篇 下一篇

猜你喜欢

热点阅读