findLast(callback, thisp?)

(not implemented) Finds the last value within a collection that passes a test, searching from the right.

At time of writing, no collection implements this method, but it would be be a logical addition triangulated from find (an ECMA6 Proposal) and lastIndexOf.

On collections

Usage

  • findLast(callback)
  • findLast(callback, thisp)

Related