- Underscore.JS - Home
- Underscore.JS - Overview
- Underscore.JS - Environment Setup
- Underscore.JS - Iterating Collection
- Underscore.JS - Processing Collection
- Underscore.JS - Iterating Array
- Underscore.JS - Processing Array
- Underscore.JS - Functions
- Underscore.JS - Mapping Objects
- Underscore.JS - Updating Objects
- Underscore.JS - Comparing Objects
- Underscore.JS - Utilities
- Underscore.JS - Chaining
- Underscore.JS Useful Resources
- Underscore.JS - Quick Guide
- Underscore.JS - Useful Resources
- Underscore.JS - Discussion
Underscore.JS - clone method
Syntax
_.clone(object)
clone method creates a shallow copy of object passed and returns the same. Nested objects are copied as reference. See the below example:
Example
var _ = require('underscore');
var student = { name : 'Sam'};
// Example: use clone to create another student
var student1 = _.clone(student);
console.log(student1);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
{ name: 'Sam' }
underscorejs_updating_objects.htm
Advertisements