首页 > 其他 > 详细

es6中find方法

时间:2019-10-08 23:21:37      阅读:383      评论:0      收藏:0      [点我收藏+]

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

var array1 = [5, 12, 8, 130, 44];
var found = array1.find(function(element) {
  return element > 10;
});
console.log(found);

技术分享图片

 

 

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 }

技术分享图片

 

es6中find方法

原文:https://www.cnblogs.com/ChineseLiao/p/11638175.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!