vote up 36 vote down star
24

What is the most efficient way to clone a JavaScript object? I've seen:

obj = eval(uneval(o));

But that's not cross platform (FF only). I've done (in Mootools 1.2) things like this:

obj = JSON.decode(JSON.encode(o));

But question the efficiency. I've also seen recursive copying function, etc. I'm pretty surprised that out-of-the-box JavaScript doesn't have a method for doing this.

flag

8 Answers

vote up 114 vote down check

I want to note that the .clone() method in jQuery only clones DOM elements - in order to clone JavaScript objects you would do:

  // Shallow copy
  var newObject = jQuery.extend({}, oldObject);

  // Deep copy
  var newObject = jQuery.extend(true, {}, oldObject);

More information can be found in the jQuery documentation.

I also want to note that the deep copy is actually much smarter than what is shown above - it's able to avoid many traps (trying to deep extend a DOM element, for example). It's used frequently in jQuery core and in plugins to great effect.

link|flag
1  
Having that pointed out and thinking about it a bit more, the Mootools way of doing something just like that would be: var newObject = $merge(oldObject); ...which for my typical needs I think is the best of all. – jschrab Sep 23 '08 at 18:49
42  
holy crap, it's John Resig! – Aeon Sep 23 '08 at 20:22
1  
Hah, yeah! Whats the deal with his low rating? People like him should have a start-rating of 3.000 :) – roosteronacid Sep 23 '08 at 21:58
7  
The cool thing about John Resig answering the question is that you have a very high probability that it's the right answer. – knowncitizen Sep 25 '08 at 21:45
3  
not saying I'm a John Resig fanboy, but... I am. – Zach Sep 25 '08 at 22:18
show 5 more comments
vote up 2 vote down

In Prototype you would do something like

newObject = Object.clone(myObject);

The Prototype documentation notes that this makes a shallow copy.

link|flag
vote up 9 vote down

There doesn't seem to be an in-built one, you could try:

function clone(obj){
    if(obj == null || typeof(obj) != 'object')
        return obj;

    var temp = obj.constructor(); // changed

    for(var key in obj)
        temp[key] = clone(obj[key]);
    return temp;
}

There's a lengthy post with many contributing comments on Keith Deven's blog.

If you want to stick to a framework, JQuery also has a clone() function:

// Clone current element
var cloned = $(this).clone();

There were reported issues previously with this not working in Internet Explorer, but these were resolved as of version 1.2.3.

link|flag
The JQuery solution will work for DOM elements but not just any Object. Mootools has the same limit. Wish they had a generic "clone" for just any object... The recursive solution should work for anything. It's probably the way to go. – jschrab Sep 23 '08 at 17:23
This function breaks if the object being cloned has a constructor that requires parameters. It seems like we can change it to "var temp = new Object()" and have it work in every case, no? – Andrew Arnott Oct 4 at 22:06
vote up 0 vote down

I would clone an object like this:

Object.prototype.clone = function ()
{
    function F() {}
    F.prototype = this;
    return new F();
};


function User(_name, _age)
{
    this.name = _name;
    this.age = _age;
}


var thomas = new User("Thomas", "26");
alert(thomas.name);

var thomasClone = thomas.clone();
alert(thomasClone.name);

I would say that this is actually copying, since the data in the thomas object is reflected in the thomasClone object.

link|flag
vote up 2 vote down
function clone(obj)
 { var clone = {};
   clone.prototype = obj.prototype;
   for (property in obj) clone[property] = obj[property];
   return clone;
 }
link|flag
The problem with method, that if you have sub objects within the obj, their references will be cloned, and not the values of every sub object. – Kamarey Jun 25 at 7:46
vote up 0 vote down
function deepClone(obj, CloneObj) {
       CloneObj.clear();
       jQuery.each(obj, function(i, val) {
           var newObject = jQuery.extend(true, {}, val);
           CloneObj[i] = newObject;
       });
   }
link|flag
vote up 0 vote down

Has anyone tried this?

Object.clone = function ()
{
    var ClonedObject = function(){};
    ClonedObject.prototype = this;
    return new ClonedObject;
}

It seems to work and I can't see what pitfalls would be. In my tests the cloned object is instanceof the correct objects.

Note: it could also be implemented as a standalone function, i.e.

function clone(object)
{
    // (replace "this" with "object")
    ...
}
link|flag
Sorry roosteronacid, I didn't realise someone had provided this solution. I guess thats proof that it will work. – Bob May 24 at 10:26
vote up 1 vote down

Code:

// extends 'from' object with members from 'to'. If 'to' is null, a deep clone of 'from' is returned
function extend(from, to)
{
    if (from == null || typeof from != "object") return from;
    if (from.constructor != Object && from.constructor != Array) return from;
    if (from.constructor == Date || from.constructor == RegExp || from.constructor == Function ||
    	from.constructor == String || from.constructor == Number || from.constructor == Boolean)
    	return new from.constructor(from);

    to = to || new from.constructor();

    for (var name in from)
    {
    	to[name] = typeof to[name] == "undefined" ? this.extend(from[name], null) : to[name];
    }

    return to;
}

Test:

var obj =
{
    date: new Date(),
    func: function(q) { return 1 + q; },
    num: 123,
    text: "asdasd",
    array: [1, "asd"],
    regex: new RegExp(/aaa/i),
    subobj:
    {
    	num: 234,
    	text: "asdsaD"
    }
}

var clone = extend(obj);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.