_.cloneDeep

_.cloneDeep(value)

This method is like _.clone except that it recursively clones value.

Since

1.0.0

Arguments

  1. value (*): The value to recursively clone.

Returns

(*): Returns the deep cloned value.

Example

var objects = [{ 'a': 1 }, { 'b': 2 }];
 

var deep = _.cloneDeep(objects);

console.log(deep[0] === objects[0]);
// => false
doc_Lodash
2016-11-27 16:35:53
Comments
Leave a Comment

Please login to continue.