null 代表空值,是JS七中内置类型的之一
特点一
使用typeof 运算符对 null 进行运算,得到返回不不是"null" 字符串值,而是"object"
console.log(typeof null)
检测null类型的常用办法是复合条件检测
var a=null;
if(!a && typeof a==="object"){
console.log("是null 类型");
}
null 是假值,也是唯一一个使用 typeof 会返回"object" 的基本类型;