Latest
function eachRight
import { eachRight } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/collection.js";

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