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