Bootstrap

null与undefined

含义:

null表示空值,即该处的值现在为空。在内存里的表示就是,栈中的变量没有指向堆中的内存对象。调用函数时,某个参数未设置任何值,这时就可以传入null,表示该参数为空。比如,某个函数接受引擎抛出的错误作为参数,如果运行过程中未出错,那么这个参数就会传入null,表示未发生错误。

undefined表示“未定义”,即表示“此处无定义”的原始值。下面是返回undefined的典型场景。

// 变量声明了,但没有赋值
var i;
i // undefined

// 调用函数时,应该提供的参数没有提供,该参数等于 undefined
function f(x) {
  return x;
}
f() // undefined

// 对象没有赋值的属性
var  o = new Object();
o.p // undefined

// 函数没有返回值时,默认返回 undefined
function f() {}
f() // undefined

区别:

null转为数字时为0,undefined转为数字时为NaN。

Number(null) // 0
5 + null // 5

Number(undefined) // NaN
5 + undefined // NaN

typeof返回值不同。

typeof undefined;//undefined
typeof null;//object

大部分情况下它们几乎没区别,宽松相等还会直接报告两者相等。

undefined == null //true
undefined === null //false
;