Like Array#findIndex but searches the array backwards.
npm install find-last-indexLike Array#findIndex but searches the array backwards.

``sh`
npm install find-last-index
`js
const findLastIndex = require("find-last-index");
findLastIndex(["a", "b", "bba", "cc", "d"], value => value.includes("a"));
//=> 2
`
#### array
Type: array
The array to search.
#### predicate
Type: (item, index, array) => boolean`
The predicate function to call on each item.