# lodash findLast

类似 _.fin,从右至左遍历集合元素。

概要

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

这个方法类似 _.find,不同之处在于,_.findLast 是从右至左遍历 collection (集合)元素的。

添加版本

2.0.0

参数

  1. collection (Array|Object): 一个用来迭代的集合。
  2. [predicate=_.identity] (Array|Function|Object|string): 每次迭代调用的函数。
  3. [fromIndex=collection.length-1] (number): 开始搜索的索引位置。

返回

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

例子


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

Last Updated: 6/17/2023, 6:57:19 PM