笔记:undefined和null

137 阅读1分钟
  • null表示"没有对象",即该处不应该有值

typeof null //Object

    1. 作为函数的参数,表示该函数的参数不是对象。
    1. 作为对象原型链的终点。

    Object.getPrototypeOf(Object.prototype); // null

  • undefined表示"缺少值",就是此处应该有一个值,但是还没有定义

typeof undefined //undefined

  • 1.变量被声明了,但没有赋值时,就等于undefined

    var i; console.log(i)// undefined

  • 2.调用函数时,应该提供的参数没有提供,该参数等于undefined。

    function f(){}; console.log(f()) //undefined

  • 3.对象没有赋值的属性,该属性的值为undefined。

    var o = {}; console.log(o.p) //undefined

  • 4.函数没有返回值时,默认返回undefined。

    var x = f(); console.log(x) //undefined

undefined和null在if语句中,都会被判为false,相等运算符结果也是相等

if(!undefined){//true}
if(!null){//true}
null == undefined; //true
undefined===null; //false

验证null时,一定要===,因为==无法分别null和undefined