码迷,mamicode.com
首页 > 其他好文 > 详细

265 Array.prototype.find(),findIndex()

时间:2020-01-27 23:58:20      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:返回   ret   efi   fun   成员   组成   ted   测试   err   

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()

标签:返回   ret   efi   fun   成员   组成   ted   测试   err   

原文地址:https://www.cnblogs.com/jianjie/p/12237006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!