Lodash - clone method



Syntax

_.clone(value)

Creates a shallow clone of value.

Arguments

  • value (*) − The value to clone.

Output

  • (*) − Returns the cloned value.

Example

var _ = require('lodash');
var objects = [{ 'a': 1 }, { 'b': 2 }];
var shallowCopy = _.clone(objects);

console.log(shallowCopy[0] === objects[0]);

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

Command

\>node tester.js

Output

true
lodash_lang.htm
Advertisements