在 JavaScript 中检查数字是否为 NaN
使用 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 之前尝试将非数字强制转换为数字。
相关文章
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
如何检查 NaN 是否存在于 Pandas DataFrame 中
发布时间:2024/04/23 浏览次数:208 分类:Python
-
我们可以使用 isnull()和 isna()方法检查 Pandas DataFrame 中是否存在 NaN。
如何在 Pandas DataFrame 的列中将所有 NaN 值替换为零
发布时间:2024/04/23 浏览次数:198 分类:Python
-
在 Pandas 库中使用 df.fillna(),df.replace()方法在 DataFrame 中将 NaN 值替换为零
Pandas 删除带有 NaN 的行
发布时间:2024/04/23 浏览次数:157 分类:Python
-
本教程解释了我们如何使用 DataFrame.notna()和 DataFrame.dropna()方法来删除所有带有 NaN 值的行。
如何计算 Pandas Dataframe 列中的 NaN 出现的次数
发布时间:2024/04/20 浏览次数:186 分类:Python
-
本教程演示如何通过使用不同的方法(例如 isna()和 df.isnull().sum())来计算 Pandas Dataframe 列中的 NaN 出现的次数。
如何在 JavaScript 中合并两个数组而不出现重复的情况
发布时间:2024/03/23 浏览次数:86 分类:JavaScript
-
本教程介绍了如何在 JavaScript 中合并两个数组,以及如何删除任何重复的数组。