How to tell whether value is NaN without using isNaN, which has false positives?(如何在不使用具有误报的 isNaN 的情况下判断值是否为 NaN?)
问题描述
如何在不使用isNaN
函数的情况下检查输入值是否为NaN
?
How can I check whether the input value is NaN
or not without using the isNaN
function?
推荐答案
如果可以使用 ECMAScript 6,你有 Object.is
:
If you can use ECMAScript 6, you have Object.is
:
return Object.is(obj, NaN);
<小时>
否则,这里有一个选项,来自 underscore.js 的源代码:
// Is the given value `NaN`?
_.isNaN = function(obj) {
// `NaN` is the only value for which `===` is not reflexive.
return obj !== obj;
};
还有他们对该功能的说明:
Also their note for that function:
注意:这与原生 isNaN 函数不同,如果变量未定义,它也会返回 true.
Note: this is not the same as the native isNaN function, which will also return true if the variable is undefined.
这篇关于如何在不使用具有误报的 isNaN 的情况下判断值是否为 NaN?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在不使用具有误报的 isNaN 的情况下判断值是否为 NaN?
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01