Lodash – spread method

  • Post author:
  • Post category:Lodash
  • Post comments:0 Comments
Lodash - spread method

Syntax Lodash spread method

_.spread(func, [start=0])

Lodash spread method creates a function that invokes func with this binding of the create function and an array of arguments much like Function#apply.

Arguments

  • func (Function) โˆ’ The function to spread arguments over.
  • [start=0] (number) โˆ’ The start position of the spread.

Output

  • (Function) โˆ’ Returns the new function.

Example

var _ = require('lodash');

var say = _.spread(function(who, what) {
   return who + ' says ' + what;
});
console.log(say(['Joe', 'Hi']));

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

Joe says Hi

Next Topic – Click Here

Leave a Reply