Skip to main content
Module

x/lodash_es/mod.ts>eachRight

lodash for deno use
Latest
function eachRight
import { eachRight } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

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

Examples

_.forEachRight([1, 2], function(value) { console.log(value); }); // => Logs 2 then 1.

Parameters

collection

The collection to iterate over.

iteratee