265 Array.prototype.find(),findIndex()
Posted Keep going
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了265 Array.prototype.find(),findIndex()相关的知识,希望对你有一定的参考价值。
find() 方法返回数组中满足提供的测试函数的第一个元素的值。否则返回 undefined。
const array1 = [5, 12, 8, 130, 44];
const found = array1.find(element => element > 10);
console.log(found);
// expected output: 12
var inventory = [
{name: 'apples', quantity: 2},
{name: 'bananas', quantity: 0},
{name: 'cherries', quantity: 5}
];
function findCherries(fruit) {
return fruit.name === 'cherries';
}
console.log(inventory.find(findCherries)); // { name: 'cherries', quantity: 5 }
实例方法:findIndex()
用于找出第一个符合条件的数组成员的位置,如果没有找到返回-1
let ary = [1, 5, 10, 15];
let index = ary.findIndex((value, index) => value > 9);
console.log(index); // 2
以上是关于265 Array.prototype.find(),findIndex()的主要内容,如果未能解决你的问题,请参考以下文章
[乐意黎原创] Array.prototype.find() 与 Array.prototype.findIndex() 使用详解
为啥我的 Array.prototype.find() 返回未定义?