How to Clone Object in JavaScript

Channel: Linux
Abstract: var Obj2 = $.extend(trueconsole.log(Obj2)

We found jQuery’s extend() function is the best way for creating a clone object in JavaScript. jQuery’s extend() functions is also useful for merging two or more objects in a single object.

This article will help you to create a clone of an object in JavaScript using jQuery’s extend() function.

JavaScript Clone Object Code:

If you look in below code in JavaScript, you will find that first we have defined our first object named Obj1 with some demo values. After that we have cloned it to new object named Obj2 using extend() function. Then updated value of Obj2.name variable for making some difference for understanding.

var Obj1 = { name: "Rahul", addr: "1 Lucknow City, India", contact: "(999)-999-9999" }; var Obj2 = $.extend(true, {}, Obj1); Obj2.name = "Sahil"; console.log(Obj1); console.log(Obj2);1234567891011var Obj1 = {    name: "Rahul",    addr: "1 Lucknow City, India",    contact: "(999)-999-9999"}; var Obj2 = $.extend(true, {}, Obj1);Obj2.name = "Sahil"; console.log(Obj1);console.log(Obj2);

Example of Object Clone using jQuery’s extend():

First create a test.html file using following code on your system. We have used above JavaScript code for creating clone of object.

<html> <head> <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> <script type="text/javascript"> var Obj1 = { name: "Rahul", addr: "1 Lucknow City, India", contact: "(999)-999-9999" }; var Obj2 = $.extend(true, {}, Obj1); Obj2.name = "Sahil"; console.log(Obj1); console.log(Obj2); </script> </head> <body> </body> </html>123456789101112131415161718192021<html><head><script src="http://code.jquery.com/jquery-1.11.0.min.js"></script><script type="text/javascript">var Obj1 = {    name: "Rahul",    addr: "1 Lucknow City, India",    contact: "(999)-999-9999"}; var Obj2 = $.extend(true, {}, Obj1);Obj2.name = "Sahil"; console.log(Obj1);console.log(Obj2); </script></head><body></body></html>

Now access this page in web browser and check console logs. For this example I am using Firebug on Firefox browser to view console logs and found following results.

Ref From: tecadmin
Channels: jsjavascript

Related articles