Lodash _.findLastKey

2021-09-24 10:38 更新

_.findLastKey(object, [predicate=_.identity])

這個(gè)方法類似_.findKey。 不過它是反方向開始遍歷的。

添加版本

2.0.0

參數(shù)

  1. object (Object): 需要檢索的對象。
  2. [predicate=_.identity] (Function): 每次迭代時(shí)調(diào)用的函數(shù)。

返回

(*): 返回匹配的 key,否則返回 undefined.

例子

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


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號