js数组findIndex使用示例
时间: 2024-01-05 17:52:12 浏览: 84
findIndex方法用于查找数组中满足条件的第一个元素的索引值,它接收一个回调函数作为参数,回调函数的参数是当前遍历的元素,返回值为布尔值,如果返回true,则表示找到了满足条件的元素,findIndex方法会立即返回该元素的索引值;如果没找到,则返回-1。
下面是一个使用示例:
```javascript
const arr = [1, 2, 3, 4, 5];
// 找到第一个大于3的元素的索引值
const index = arr.findIndex(item => item > 3);
console.log(index); // 输出3
```
在上面的示例中,我们定义了一个数组arr,然后使用findIndex方法找到第一个大于3的元素的索引值,即4所在的索引值3。
下面再举一个示例,该示例演示了如何使用findIndex方法查找数组中是否存在某个元素:
```javascript
const arr = [1, 2, 3, 4, 5];
// 查找元素3在数组中的索引值
const index = arr.findIndex(item => item === 3);
console.log(index); // 输出2
// 查找元素6在数组中的索引值
const index2 = arr.findIndex(item => item === 6);
console.log(index2); // 输出-1
```
在上面的示例中,我们先使用findIndex方法查找元素3在数组中的索引值,返回值为2;然后再查找元素6在数组中的索引值,由于数组中不存在元素6,因此返回值为-1。
阅读全文