Number.NaN
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
尝试一下
值
数字值 NaN
。
Number.NaN 的属性特性 | |
---|---|
可写 | 否 |
可枚举 | 否 |
可配置 | 否 |
描述
由于 NaN
是 Number
的静态属性,你应该始终将其用作 Number.NaN
,而不是作为一个数字值的属性。
示例
检查值是否为数字
js
function sanitize(x) {
if (isNaN(x)) {
return Number.NaN;
}
return x;
}
规范
Specification |
---|
ECMAScript Language Specification # sec-number.nan |
浏览器兼容性
BCD tables only load in the browser