Lodash _.findLast

2021-09-24 10:04 更新

_.findLast(collection, [predicate=_.identity], [fromIndex=collection.length-1])

這個(gè)方法類似_.find ,不同之處在于,_.findLast是從右至左遍歷collection (集合)元素的。

添加版本

2.0.0

參數(shù)

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

返回

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

例子

_.findLast([1, 2, 3, 4], function(n) {  return n % 2 == 1;});
// => 3


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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)