_.findLast(collection, [predicate=_.identity], [fromIndex=collection.length-1])
这个方法类似_.find
,不同之处在于,_.findLast
是从右至左遍历collection
(集合)元素的。
const_=require('lodash'); console.log(_.findLast([1, 2, 3, 4], function (n) { returnn%2==1; }))
输出:3
这个方法类似_.find
,不同之处在于,_.findLast
是从右至左遍历collection
(集合)元素的。
const_=require('lodash'); console.log(_.findLast([1, 2, 3, 4], function (n) { returnn%2==1; }))
输出:3