JS findIndex
时间: 2024-01-27 13:15:26 浏览: 76
find_findIndex
JS的findIndex方法用于查找数组中满足条件的第一个元素的下标。下面是两种使用findIndex方法的例子:
1. 使用箭头函数:
```javascript
const arr = [1, 2, 3, 4, 5, 3, 3, 2, 4, 5];
const index = arr.findIndex(item => item > 2);
console.log(index); // 输出:2
```
2. 直接使用条件表达式:
```javascript
const arr = [1, 2, 3, 4, 5, 3, 3, 2, 4, 5];
const index = arr.findIndex(item => item > 2);
console.log(index); // 输出2
```
注意:findIndex方法返回的是满足条件的第一个元素的下标。如果没有满足条件的元素,则返回-1。
阅读全文