Saturday, October 25, 2025
HomeLanguagesJavascriptLodash _.unsplat() Method

Lodash _.unsplat() Method

The Lodash _.unsplat() method takes a function expecting an array as its last argument and returns a function which works identically, but takes a list of trailing arguments instead of an array.

Syntax:

_.unsplat( function );

Parameters: This method accepts a single parameter as mentioned above and discussed below:

  • function: Original function taking its last arguments as an array.

Note: To execute the below examples, you have to install the lodash-contrib library by using this command prompt and execute the following command.

npm install lodash-contrib

Below examples illustrate the Lodash _.unsplat() method in JavaScript:

Example 1:

Javascript




// Defining lodash contrib variable
var _ = require('lodash-contrib'); 
  
function g (val, arr) {
    return val+" : "+arr;
}
  
var gfgFunc = _.unsplat(g);
  
console.log(gfgFunc("a", 10, 20, 30, 40))


Output:

a : 10, 20, 30, 40

Example 2: 

Javascript




// Defining lodash contrib variable
var _ = require('lodash-contrib'); 
  
function g (arr) {
    return arr;
}
  
var gfgFunc = _.unsplat(g);
  
console.log(gfgFunc(100, 200, 300, 400))


Output:

[ 100, 200, 300, 400 ]

Example 3: 

Javascript




// Defining lodash contrib variable
var _ = require('lodash-contrib'); 
  
function g (val,arr) {
    return arr.join(val);
}
  
var gfgFunc = _.unsplat(g);
  
console.log(gfgFunc(" : ", "neveropen", "Computer Science Portal for Geeks"))


Output:

neveropen : Computer Science Portal for Geeks

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