在 JavaScript 中使 Array.indexOf() 不区分大小写
要通过执行不区分大小写的查找来获取元素的索引,我们必须:
-
使用函数调用
Array.findIndex
方法 - 该函数应将数组元素和字符串转换为小写并进行相等性检查
-
Array.findIndex
方法返回元素的索引,如果没有元素满足条件则返回 -1
// Not Supported in IE 6-11
const arr = ['HELLO', 'WORLD'];
const str = 'world';
const index = arr.findIndex(element => {
return element.toLowerCase() === str.toLowerCase();
});
console.log(index); // 👉️ 1
if (index !== -1) {
// 👉️ string is in the array
}
我们传递给 Array.findIndex
方法的函数会针对数组的每个元素进行调用,直到它返回真值或遍历所有元素。
在代码片段中,我们将数组元素和字符串都转换为小写,以使比较不区分大小写。
通过将元素和字符串转换为大写可以实现相同的结果。
该字符串包含在索引 1 处的数组中,因此这是 Array.findIndex
的返回值。
如果相等比较从未返回 true,则 Array.findIndex 将返回 -1。
我们无法通过使用 Array.indexOf 执行不区分大小写的查找来获取元素的索引,因为该方法直接接收值并且不允许我们遍历每个数组元素并操作它们(例如小写)。
请注意,Internet Explorer 6-11 不支持
Array.findIndex
,因此如果您必须支持浏览器,请确保获取 polyfill 或使用 babel 将我们的代码转换为浏览器可以理解的旧版本的 JavaScript。
相关文章
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
如何在 JavaScript 中合并两个数组而不出现重复的情况
发布时间:2024/03/23 浏览次数:86 分类:JavaScript
-
本教程介绍了如何在 JavaScript 中合并两个数组,以及如何删除任何重复的数组。