服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

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

这个方法就像_.find,不同的是它遍历collection从右到左的元素 。

初始

2.0.0

参数
  1. collection (Array | Object):要检查的集合。
  2. [predicate=_.identity] (Function):每次迭代调用的函数。
  3. [fromIndex=collection.length-1] (number):从中搜索的索引。
返回

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

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