Lodash.lastIndexOf

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

struct Lodash
nothrow @trusted @safe ref
lastIndexOf
(
T
U = Any
)
(
auto ref T value
,
auto ref U fromIndex = U.init
)

Return Value

Type: auto ref

- Lodash chained on (number): the index of the matched value, else -1.

Meta