JavaScript中的Array.prototype.findIndex


本文作者: jsweibo

本文链接: https://jsweibo.github.io/2019/09/06/JavaScript%E4%B8%AD%E7%9A%84Array-prototype-findIndex/

摘要

本文主要讲述了:

  1. 作用

正文

作用

Array.prototype.findIndex()接受一个回调函数作为第一个参数

  • 返回数组中,第一个符合回调函数要求的,元素的索引
  • 如果没有符合要求的元素,返回-1

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const foo = [3, 4, 5, 6, 3, 4];

// 1
console.log(
foo.findIndex(function (item) {
if (item === 4) {
return true;
}
})
);

// -1
console.log(
foo.findIndex(function (item) {
if (item === 7) {
return true;
}
})
);

参考资料

本文作者: jsweibo

本文链接: https://jsweibo.github.io/2019/09/06/JavaScript%E4%B8%AD%E7%9A%84Array-prototype-findIndex/


本文对你有帮助?请支持我


支付宝
微信