迹忆客 专注技术分享

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

JavaScript 中检查数组中的所有值是否为 Null

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

要检查数组中的所有值是否都等于 null,请使用 every() 方法遍历数组并将每个值与 null 进行比较,例如 arr.every(value => value === null)。 如果数组中的所有值都等于 null,则 every 方法将返回 true

function allAreNull(arr) {
  return arr.every(element => element === null);
}

console.log(allAreNull([null, null])); // 👉️ true
console.log(allAreNull([null, undefined])); // 👉️ false

我们创建了一个可重用的函数来检查数组中的所有值是否都为空。

我们传递给 Array.every 方法的函数会针对数组中的每个元素进行调用,直到它返回一个虚假值或遍历整个数组。

如果函数至少返回一次假值,则 every 方法短路也返回假值。

JavaScript 中的假值是:falsenullundefined0 、""(空字符串)、NaN(不是数字)。

在每次迭代中,我们使用严格相等 (===) 运算符检查数组中的当前值是否等于 null。

如果所有数组元素都满足条件,则 every 方法将返回 true。如果条件至少失败一次,则 every 方法将短路并返回 false。 这很有用,因为我们不想在找到答案后继续迭代。

另一种方法是使用 for...of 循环。

要检查数组中的所有值是否都等于 null:

  1. 使用 for...of 循环遍历数组。
  2. 在每次迭代中,将当前值与 null 进行比较。
  3. 如果该值不等于 null,则跳出循环并返回 false。
function allAreNull(arr) {
  let result = true;

  for (const value of arr) {
    if (value !== null) {
      result = false;
      break;
    }
  }

  return result;
}

console.log(allAreNull([null, null])); // 👉️ true
console.log(allAreNull([undefined, null])); // 👉️ false

代码示例通过使用更手动的方法实现了相同的结果。

我们声明了一个结果变量并将其设置为 true

如果数组中的任何值不等于 null,我们将结果变量重新分配给 false,跳出循环并从函数返回 false

break 关键字用于退出当前循环。

转载请发邮件至 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

扫一扫阅读全部技术教程

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

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便