其他分享
首页 > 其他分享> > find() && findIndex()

find() && findIndex()

作者:互联网

findIndex() 

返回数组中满足提供的测试函数的第一个元素的索引。否则返回-1。

const array1 = [5, 12, 8, 130, 44];
const isLargeNumber = (element) => element > 13;
console.log(array1.findIndex(isLargeNumber));
// expected output: 3

find() 

返回数组中满足提供的测试函数的第一个元素的值。否则返回 undefined

const array1 = [5, 12, 8, 130, 44];
const found = array1.find(element => element > 10);
console.log(found);
// expected output: 12

  

标签:findIndex,12,const,array1,element,&&,find
来源: https://www.cnblogs.com/blogZhao/p/12560445.html