Skip to main content
variable forEachRight
import { forEachRight } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Executes a provided function once for each array element, starting from the array's last element.

type

(array?: any[], callback: Function) => unknown