Lodash - prototype.commit method



Syntax

_.prototype.commit()

Executes the chain sequence and returns the wrapped result.

Output

  • (Object) − Returns the new lodash wrapper instance.

Example

var _ = require('lodash');  
var array = [1, 2];
var wrapped = _(array).push(3);
 
wrapped = wrapped.commit();
console.log(array);

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

Command

\>node tester.js

Output

[ 1, 2, 3 ]
lodash_seq.htm
Advertisements