_.findLast(查找数组或对象中符合条件的值)
_.findLast(collection, [predicate=_.identity], [fromIndex=collection.length-1])_.findLast([1, 2, 3, 4], function(n) {
return n % 2 == 1;
});
// => 3Last updated
_.findLast(collection, [predicate=_.identity], [fromIndex=collection.length-1])_.findLast([1, 2, 3, 4], function(n) {
return n % 2 == 1;
});
// => 3Last updated