Monday, September 23, 2024
Google search engine
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

Recent Comments