null表示数字、字符串和对象是“无值”的。
undefined表示①变量声明但没有初始化时②要查询的对象属性或数组的元素不存在时③如果函数没有任何返回值,则返回undefined④引用没有提供实参的函数形参的值也只会得到undefined。
typeof(null) //'object' null == undefined //true null === undefined //false null == false //false undefined == false //false