cloneDeep

Lang
since 1.0.0

Arguments

  • * The value to recursively clone.

Returns

* the deep cloned value.

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

Example of Lodash _.cloneDeep

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

var deep = _.cloneDeep(objects);
console.log(deep[0] === objects[0]);
// => false