_.prototype.commit

_.prototype.commit()

Executes the chain sequence and returns the wrapped result.

Since

3.2.0

Returns

(Object): Returns the new lodash wrapper instance.

Example

var array = [1, 2];

var wrapped = _(array).push(3);
 

console.log(array);
// => [1, 2]
 
wrapped = wrapped.commit();

console.log(array);
// => [1, 2, 3]
 
wrapped.last();
// => 3
 

console.log(array);
// => [1, 2, 3]
doc_Lodash
2016-11-27 16:39:40
Comments
Leave a Comment

Please login to continue.