findLast

Collection
since 2.0.0

Returns

* the matched element, else `undefined`.

This method is like _.find except that it iterates over elements of collection from right to left.

Example of Lodash _.findLast

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