Lodash _.find

2021-09-22 09:50 更新

_.find(collection, [predicate=_.identity], [fromIndex=0])

遍歷 collection(集合)元素,返回 predicate(斷言函數(shù))第一個返回真值的第一個元素。predicate(斷言函數(shù))調(diào)用3個參數(shù): (value, index|key, collection)。

添加版本

0.1.0

參數(shù)

  1. collection (Array|Object): 一個用來迭代的集合。
  2. [predicate=_.identity] (Array|Function|Object|string): 每次迭代調(diào)用的函數(shù)。
  3. [fromIndex=0] (number): 開始搜索的索引位置。

返回

(*): 返回匹配元素,否則返回 undefined。

例子

var users = [  { 'user': 'barney',  'age': 36, 'active': true },  { 'user': 'fred',    'age': 40, 'active': false },  { 'user': 'pebbles', 'age': 1,  'active': true }];
 _.find(users, function(o) { return o.age < 40; });
// => object for 'barney' 
// The `_.matches` iteratee shorthand.
_.find(users, { 'age': 1, 'active': true });
// => object for 'pebbles' 
// The `_.matchesProperty` iteratee shorthand.
_.find(users, ['active', false]);
// => object for 'fred'
 // The `_.property` iteratee shorthand.
_.find(users, 'active');
// => object for 'barney'


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號