• 空值(null)
• 未定义(undefined)
• 布尔值( boolean)
• 数字(number)
• 字符串(string)
• 对象(object)
• 符号(symbol,ES6 中新增)
除对象之外,其他统称为“基本类型”。
whytypeof undefined === "undefined"; // true
typeof true === "boolean"; // true
typeof 42 === "number"; // true
typeof "42" === "string"; // true
typeof { life: 42 } === "object"; // true
// ES6中新加入的类型
typeof Symbol() === "symbol"; // true
你可能注意到 null 类型不在此列。它比较特殊,typeof 对它的处理有问题:
typeof null === "object"; // true
《你不知道的JavaScript》——
正确的返回结果应该是 “null”,但这个 bug 由来已久,在 JavaScript 中已经存在了将近 二十年,也许永远也不会修复,因为这牵涉到太多的 Web 系统,“修复”它会产生更多的 bug,令许多系统无法正常工作。
我们需要使用复合条件来检测 null 值的类型:
var a = null;
(!a && typeof a === "object"); // true
null 是基本类型中唯一的一个“假值”(falsy 或者 false-like,参见第 4 章)类型,typeof对它的返回值为 “object”。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)