Like Array#find but searches the array backwards.
npm install find-last
const findLast = require("find-last");
findLast(["a", "b", "bba", "cc", "d"], value => value.includes("a"));
//=> "bba"
Type: array
The array to search.
Type: (item, index, array) => boolean
The predicate function to call on each item.