迹忆客 专注技术分享

当前位置:主页 > 学无止境 > WEB前端 > JavaScript >

在 JavaScript 中检查数字是否为 NaN

作者:迹忆客 最近更新:2022/10/10 浏览次数:

使用 Number.isNaN() 方法检查数字是否为 NaN,例如 if (Number.isNaN(num)) {}。 如果提供的值为 NaN 并且具有数字类型,则 Number.isNaN() 方法将返回 true。

const num = 0 / 'test';
console.log(num); // 👉️ NaN

if (Number.isNaN(num)) {
  // 👉️ this runs only if NaN and type of number
  console.log('Number is NaN');
}

我们使用 Number.isNaN 方法来检查一个值是否具有数字类型并且是 NaN。

检查 NaN 时不应使用相等运算符,因为 NaN 不等于 Javascript 中的 NaN

// ❌ 不要这样做
console.log(Number.NaN === Number.NaN); // 👉️ false

NaN 是 JavaScript 中唯一不等于自身的值。

Number.isNaN() 方法仅在满足以下条件时才返回 true

  • 该值的类型为 number
  • 值为 NaN

以下所有示例都返回 false。

console.log(Number.isNaN('string')); // 👉️ false
console.log(Number.isNaN(undefined)); // 👉️ false
console.log(Number.isNaN(null)); // 👉️ false
console.log(Number.isNaN([])); // 👉️ false
console.log(Number.isNaN({})); // 👉️ false

这是一个示例,演示了 Number.isNaN 方法是如何实现的。

Number.isNaN = Number.isNaN || function isNaN(input) {
    return typeof input === 'number' && input !== input;
}

我们首先检查浏览器是否支持 Number.isNaN 方法。

如果不支持,我们通过将函数附加到 Number 对象的 isNaN 属性来实现它。

该函数检查所提供值的类型是否为 number 类型并且不等于自身。

NaN 是 JavaScript 中唯一不等于自身的值,因此这足以确定该值是否为 NaN。

另一种方法是使用较旧的 isNaN 方法。

如果提供给 isNaN 方法的参数不是数字类型,则该方法会在检查它是否为 NaN 之前将值强制为数字。

这与 Number.isNaN 方法不同,后者不会强制传入的值。

以下是使用 isNaN 方法的一些示例:

console.log(isNaN(0 / 0)); // 👉️ true
console.log(isNaN('string')); // 👉️ true
console.log(isNaN(undefined)); // 👉️ true
console.log(isNaN({})); // 👉️ true
console.log(isNaN(null)); // 👉️ false
console.log(isNaN([])); // 👉️ false

Number.isNaN 方法只会为 Number.isNaN(0 / 0) 返回 true。 所有其他示例都将返回 false

较旧的 isNaN 方法比 Number.isNaN 更不直观,因为它会在检查值是否为 NaN 之前尝试将非数字强制转换为数字。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Do you understand JavaScript closures?

发布时间:2025/02/21 浏览次数:108 分类:JavaScript

The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.

Do you know about the hidden traps in variables in JavaScript?

发布时间:2025/02/21 浏览次数:178 分类:JavaScript

Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av

How much do you know about the Prototype Chain?

发布时间:2025/02/21 浏览次数:150 分类:JavaScript

The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start

Pandas 填充 NaN 值

发布时间:2024/04/23 浏览次数:201 分类:Python

本教程解释了我们如何使用 DataFrame.fillna()方法用指定的值填充 NaN 值。

Pandas 删除带有 NaN 的行

发布时间:2024/04/23 浏览次数:157 分类:Python

本教程解释了我们如何使用 DataFrame.notna()和 DataFrame.dropna()方法来删除所有带有 NaN 值的行。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便