迹忆客 专注技术分享

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

JavaScript 检查值是否不在数组中

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

要检查值是否不在数组数组中,请使用逻辑 NOT ! 运算符来否定对 includes() 方法的调用,例如 !arr.includes(myVar)。 如果该值不包含在数组中,表达式将返回 true,否则返回 false

const arr = ['a', 'b', 'c'];

if (!arr.includes('z')) {
  console.log('✅ value is not in array');
} else {
  console.log('⛔️ value is in array');
}

我们使用逻辑 NOT ! 运算符来否定对 Array.includes 方法的调用,以检查特定值是否不包含在数组中。

includes 方法将值作为参数,如果该值包含在数组中,则返回 true

由于我们要检查该值是否不包含在数组中,因此我们必须否定 ! 结果。

下面是一些使用逻辑 NOT ! 运算符的示例。

console.log(!true); // 👉️ false
console.log(!false); // 👉️ true

console.log(!'hello'); // 👉️ false
console.log(!''); // 👉️ true
console.log(!null); // 👉️ true

我们可以想象逻辑 NOT ! 运算符首先将值转换为布尔值,然后翻转值。

当我们否定一个假值时,运算符返回真,在所有其他情况下它返回假。

Falsy 值为:nullundefined空字符串NaN0false

Internet Explorer 不支持 includes() 方法。 如果我们必须支持浏览器,请改用 indexOf 方法。

另一种方法是使用 Array.indexOf 方法。

使用 indexOf 检查值是否不在数组中

要检查值是否不在数组数组中,请使用 indexOf() 方法,例如 arr.indexOf(myVar) === -1。 如果 indexOf 方法返回 -1,则该值不包含在数组中。

// Supported in IE

const arr = ['a', 'b', 'c'];

if (arr.indexOf('z') === -1) {
  console.log('✅ value is not in array');
} else {
  console.log('⛔️ value is in array');
}

indexOf 方法返回值在数组中第一次出现的索引,如果该值不包含在数组中,则返回 -1。

我们的 if 语句检查方法是否返回 -1,如果是,我们可以得出结论,该值不在数组中。

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

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便