Thursday, October 23, 2025
HomeLanguagesJavascriptLodash _.rearg() Method

Lodash _.rearg() Method

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc.

The _.rearg() method in lodash is used to create a function that calls func parameter with the arguments that are organized according to the stated indexes. Where, the argument valued at the first index is sent as the first argument, the argument valued at the second index is sent as the second argument, and so on.

Syntax:

_.rearg(func, indexes)

Parameters: This method accepts two parameters as mentioned above and described below:

  • func: It is the function which is used to reorganize the arguments for.
  • indexes: It is the indexes of organized argument.

Return Value: This method returns the new function.

Example 1:

Javascript




// Requiring lodash library
const _ = require('lodash');
  
// Calling rearg() method with its parameter
var fn = _.rearg(function(x, y, z) {
  return [x, y, z];
}, [2, 1, 0]);
   
// Calling fn
fn('z', 'y', 'x');


Output:

[ 'x', 'y', 'z' ]

Example 2:

Javascript




// Requiring lodash library
const _ = require('lodash');
  
// Calling rearg() method with its parameter
var concat = _.rearg(function(Geeks, forGeeks) {
  return (Geeks+forGeeks);
}, [1, 0]);
   
// Calling concat
concat('forGeeks', 'Geeks');


Output:

neveropen

Reference: https://lodash.com/docs/4.17.15#rearg

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS