js中null不是引用类型,而是值类型,为何typeof对它的返回值为 “object”

js中null不是引用类型,而是值类型,为何typeof对它的返回值为 “object”,第1张

js中null不是引用类型,而是值类型 JavaScript 有七种内置类型:why

JavaScript 有七种内置类型:

• 空值(null)
• 未定义(undefined)
• 布尔值( boolean)
• 数字(number)
• 字符串(string)
• 对象(object)
• 符号(symbol,ES6 中新增)

除对象之外,其他统称为“基本类型”。

why
typeof 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”。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1323199.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-12
下一篇 2022-06-12

发表评论

登录后才能评论

评论列表(0条)

保存