A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/javascript/lodash-_-foreachright-method/ below:

Lodash _.forEachRight() Method - GeeksforGeeks

Lodash _.forEachRight() Method

Last Updated : 03 Sep, 2024

Lodash _.forEachRight() method iterates over elements of collection from right to left. It is almost the same as the _.forEach() method.

Syntax:
_.forEachRight( collection, iteratee );
Parameters: Return Value:

This method returns the collection.

Example 1: In this example, we are iterating the given array from right to left and printing the value in the console.

JavaScript
// Requiring the lodash library  
const _ = require("lodash");

// Use of _.forEachRight() method 
_.forEachRight(['c', 'cpp', 'java',
    'python'], function (value) {
        console.log(value);
    });

Output:

python
java
cpp
c

Example 2: In this example, we are iterating the given object from right to left and printing the value in the console.

JavaScript
// Requiring the lodash library  
const _ = require("lodash");

// Use of _.forEachRight() method 
_.forEachRight({ 'x': 1, 'y': 2 },
    function (value, key) {
        console.log(key);
    });

Output:

y
x

Note: This will not work in normal JavaScript as it requires the lodash library to be installed. 



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4