Skip to content

findLast

Array.findLast(array, predicate)

Returns the last element in array that satisfies the provided predicate function, or undefined if no element is found.

Example

ts
import { Array } from "@monstermann/array";

Array.findLast([1, 2, 3, 4], (x) => x > 2); // 4
ts
import { Array } from "@monstermann/array";

pipe(
    [1, 2, 3, 4],
    Array.findLast((x) => x > 2),
); // 4