up vote 378 down vote favorite
210
share [g+] share [fb]

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.

link|improve this question

2  
eval() is evil. Even if targeting a browser where eval(uneval(o)); works I would definitely avoid that technique. – editor Nov 5 '11 at 18:44
feedback

24 Answers

up vote 745 down vote accepted

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|improve this answer
551  
holy crap, it's John Resig! – Aeon Sep 23 '08 at 20:22
156  
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
50  
not saying I'm a John Resig fanboy, but... I am. – Zach Sep 25 '08 at 22:18
55  
I have it on good authority that John Resig puts his pants on both legs at one time. – Andrew Hedges Dec 17 '08 at 3:31
27  
The extend function doesn't clone Date and RegEx objects. Tested with 1.3.2 version. – Kamarey Jun 25 '09 at 7:41
show 22 more comments
feedback

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|improve this answer
1  
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. – Jeffrey Schrab Sep 23 '08 at 17:23
2  
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 '09 at 22:06
Andrew, if you change it to var temp = new Object(), then your clone won't have the same prototype as the original object. Try using: 'var newProto = function(){}; newProto.prototype = obj.constructor; var temp = new newProto();' – limscoder Sep 14 '11 at 15:53
feedback

New in browsers that support EcmaScript5 you can use Object.create() to clone an object. This should be the fastest way possible.

var obj = {yes: 1, no: 2, maybe: [1,2,3,4]};
var test = Object.create(obj);

Checkout this benchmark: http://jsperf.com/cloning-an-object/2

In my previous tests where speed was a main concern I found JSON.parse(JSON.stringify(obj)) to be the fastest way to Deep clone an object (it beats out JQuery.extend with deep flag set true by 10-20%).

JQuery.extend is pretty fast when deep flag is set to false (shallow clone). It is a good option because it includes some extra logic for type validation and doesnt copy over undefined properties, etc. but this will also slow you down a little.

If you know the structure of the objects you are trying to clone or can avoid deep nested arrays you can write a simple for (var i in obj) loop to clone your object while checking hasOwnProperty and it will be much much faster than JQuery.

Lastly if you are attempting to clone a known object structure in a hot loop you can get MUCH MUCH MORE PERFORMANCE by simply in-lining the clone procedure and manually constructing the object. JS trace engines suck at optimizing for.. in loops and checking hasOwnProperty will slow you down as well. Manual clone when speed is an absolute must.

var clonedObject = {
  knownProp: obj.knownProp,
  ..
}

I hope you found this helpful.

link|improve this answer
Your test harness page is pretty sweet - although it is hard to tell exactly what objects are getting tested there. ECMA5 copy appears to be an order of magnitude faster than anything else. I'm assuming thats good enough for string/int/array pairs? – dsummersl Aug 25 '11 at 16:02
3  
Object.create returns an object with the prototype set to its first argument. I don't see how this is a copy operation by any definition. – Glenjamin Sep 8 '11 at 14:52
1  
+1 @Glenjamin - the OP was about cloning, not copying. – RobG Dec 5 '11 at 8:48
feedback

This is what I'm using:

function cloneObject(obj) {
        var clone = {};
        for(var i in obj) {
            if(typeof(obj[i])=="object")
                clone[i] = cloneObject(obj[i]);
            else
                clone[i] = obj[i];
        }
        return clone;
    }
link|improve this answer
feedback

I know this is an old post, but I thought this may be of some help to the next guy who stumbles along.

As long as you don't assign an object to anything it maintains no reference in memory. So to make an object that you want to share among other objects, you'll have to create a factory like so:

var a = function(){
    return {
        father:'zacharias'
    };
},
b = a(),
c = a();
c.father = 'johndoe';
alert(b.father);
link|improve this answer
I like this one! Specially because I wasn't using jQuery. – Tom Roggero Nov 7 '11 at 20:08
feedback

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" ? 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|improve this answer
feedback

In Prototype you would do something like

newObject = Object.clone(myObject);

The Prototype documentation notes that this makes a shallow copy.

link|improve this answer
feedback
Object.prototype.clone = function() {
  var newObj = (this instanceof Array) ? [] : {};
  for (i in this) {
    if (i == 'clone') continue;
    if (this[i] && typeof this[i] == "object") {
      newObj[i] = this[i].clone();
    } else newObj[i] = this[i]
  } return newObj;
};
link|improve this answer
You should format your code (add 4 spaces before each line) – Eric Bréchemier Dec 26 '09 at 15:45
feedback

Crockford suggests (and I prefer) using this function:

function object(o) {
    function F() {}
    F.prototype = o;
    return new F();
}

var newObject = object(oldObject);

It's terse, works as expected and you don't need a library.

link|improve this answer
correct me if I am wrong, but isn't that Crockford's beget function for prototypal inheritance? How does it apply to clone? – AlexanderN Oct 6 '10 at 15:17
1  
Yes, I was afraid of this discussion: What is the practical difference between clone, copy and prototypal inheritance, when should you use each and which functions on this page are actually doing what? I found this SO page by googling "javascript copy object". What I was really looking for was the function above, so I came back to share. My guess is the asker was looking for this too. – protonfish Oct 6 '10 at 19:51
12  
Difference between clone/copy and inheritance is, that - using your example, when I change a property of oldObject, the property also gets changed in newObject. If you make a copy, you can do what you want with oldObject without changing newObject. – Ridcully Dec 6 '10 at 13:13
2  
This will break the hasOwnProperty check so its a pretty hacky way to clone an object and will give you unexpected results. – Corban Brook Mar 16 '11 at 18:17
feedback
function clone(obj)
 { var clone = {};
   clone.prototype = obj.prototype;
   for (property in obj) clone[property] = obj[property];
   return clone;
 }
link|improve this answer
7  
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 '09 at 7:46
feedback

dojo.clone apparently clones "anything". Certainly worth a look, perhaps?

http://api.dojotoolkit.org/jsdoc/1.5/dojo.clone

link|improve this answer
1  
The source for it can be found here: trac.dojotoolkit.org/browser/dojo/trunk/_base/lang.js - search for dojo.clone – Joscha Apr 20 '10 at 7:07
feedback

There seems to be no ideal deep clone operator yet for array-like objects. As the code below illustrates, John Resig's jQuery cloner turns arrays with non-numeric properties into objects that are not arraays, and RegDwight's JSON cloner drops the non-numeric properties. The following tests illustrate these points on multiple browsers:

function jQueryClone(obj) {
   return jQuery.extend(true, {}, obj)
}

function JSONClone(obj) {
   return JSON.parse(JSON.stringify(obj))
}

var arrayLikeObj = [[1, "a", "b"], [2, "b", "a"]];
arrayLikeObj.names = ["m", "n", "o"];
var JSONCopy = JSONClone(arrayLikeObj);
var jQueryCopy = jQueryClone(arrayLikeObj);

alert("Is arrayLikeObj an array instance?" + (arrayLikeObj instanceof Array) +
      "\nIs the jQueryClone an array instance? " + (jQueryCopy instanceof Array) +
      "\nWhat are the arrayLikeObj names? " + arrayLikeObj.names +
      "\nAnd what are the JSONClone names? " + JSONCopy.names)
link|improve this answer
2  
as others have pointed out in comments to Resig's answer, if you want to clone an array-like object you change the {} to [] in the extend call, eg jQuery.extend(true, [], obj) – Anentropic Mar 3 '11 at 21:27
feedback

@David why not just use:

var newObject = JSON.parse(JSON.stringify(oldObject));

?

link|improve this answer
jQuery 1.5 now has the new jQuery.sub() method (api.jquery.com/jQuery.sub) for anyone is using the library. – Sultan Shakir Feb 2 '11 at 2:20
is there any reason why this wouldn't work? this seems amazingly elegant to me. how is its efficiency? – Jason Sep 27 '11 at 18:07
it seems like john's way is faster, but this is still an interesting way! – Jason Sep 27 '11 at 18:43
thanks! i would love to hear the cons of this approach – Sultan Shakir Sep 27 '11 at 22:35
so i determined that shallow copying is super fast, between 0 and 2ms for even a HUGE object. your way takes considerably longer, and a deep copy using john's method takes about a third longer still. – Jason Sep 27 '11 at 23:40
feedback

The way you are supposed to do it in Mootools.

var my_object = {one:1,two:2, subobject:{a:['a','A']}},three:'3'};
var my_object_clone = $merge({},my_object);
link|improve this answer
feedback
function deepClone(obj, CloneObj) {
       CloneObj.clear();
       jQuery.each(obj, function(i, val) {
           var newObject = jQuery.extend(true, {}, val);
           CloneObj[i] = newObject;
       });
   }
link|improve this answer
feedback

in my FF3.6/IE8/Chrome4 works only this solution:

function cloneObject(obj){
  var newObj = (obj instanceof Array) ? [] : {};
  for (var i in obj) {
    if (obj[i] && typeof obj[i] == "object") 
      newObj[i] = obj[i].clone();
    else
      newObj[i] = obj[i];
  }
  return newObj;
}

I don't know why, but Object's prototype extension doesn't work well in FF ;(

link|improve this answer
feedback

// obj target object, vals source object

var setVals = function (obj, vals) {
if (obj && vals) {
      for (var x in vals) {
        if (vals.hasOwnProperty(x)) {
          if (obj[x] && typeof vals[x] === 'object') {
            obj[x] = setVals(obj[x], vals[x]);
          } else {
            obj[x] = vals[x];
          }
        }
      }
    }
    return obj;
  };
link|improve this answer
feedback

for mootools in particular this severs the reference between the new obj and the old one:

var obj = {foo: 'bar'}; 
var bar = $unlink(obj);

you can also do

var obj = {foo: 'bar'};
var bar = $merge({}, $obj);

although $merge uses $unlink anyway.

p.s. for mootools 1.3 this becomes Object.clone

link|improve this answer
feedback

I used this clone method: http://oranlooney.com/static/javascript/deepCopy.js

link|improve this answer
feedback

although the question is closed, i think that this is the best solution if you want to generalize you object cloning algorithm.
It can be used with or without jquery, although i recommend leaving jquery's extend method out if you want you cloned object to have the same "class" as the original one.

function clone(obj){
    if(typeof(obj) == 'function')//it's a simple function
        return obj;
    //of it's not an object (but could be an array...even if in javascript arrays are objects)
    if(typeof(obj) !=  'object' || obj.constructor.toString().indexOf('Array')!=-1)
        if(JSON != undefined)//if we have the JSON obj
            try{
                return JSON.parse(JSON.stringify(obj));
            }catch(err){
                return JSON.parse('"'+JSON.stringify(obj)+'"');
            }
        else
            try{
                return eval(uneval(obj));
            }catch(err){
                return eval('"'+uneval(obj)+'"');
            }
    // I used to rely on jQuery for this, but the "extend" function returns
    //an object similar to the one cloned,
    //but that was not an instance (instanceof) of the cloned class
    /*
    if(jQuery != undefined)//if we use the jQuery plugin
        return jQuery.extend(true,{},obj);
    else//we recursivley clone the object
    */
    return (function _clone(obj){
        if(obj == null || typeof(obj) != 'object')
            return obj;
        function temp () {};
        temp.prototype = obj;
        var F = new temp;
        for(var key in obj)
            F[key] = clone(obj[key]);
        return F;
    })(obj);            
}
link|improve this answer
feedback

This isn't generally the most efficient solution, but it does what I need. Simple test cases below...

function clone(obj, clones) {
    // Makes a deep copy of 'obj'. Handles cyclic structures by
    // tracking cloned obj's in the 'clones' parameter. Functions 
    // are included, but not cloned. Functions members are cloned.
    var new_obj,
        already_cloned,
        t = typeof obj,
        i = 0,
        l,
        pair; 

    clones = clones || [];

    if (obj === null) {
        return obj;
    }

    if (t === "object" || t === "function") {

        // check to see if we've already cloned obj
        for (i = 0, l = clones.length; i < l; i++) {
            pair = clones[i];
            if (pair[0] === obj) {
                already_cloned = pair[1];
                break;
            }
        }

        if (already_cloned) {
            return already_cloned; 
        } else {
            if (t === "object") { // create new object
                new_obj = new obj.constructor();
            } else { // Just use functions as is
                new_obj = obj;
            }

            clones.push([obj, new_obj]); // keep track of objects we've cloned

            for (key in obj) { // clone object members
                if (obj.hasOwnProperty(key)) {
                    new_obj[key] = clone(obj[key], clones);
                }
            }
        }
    }
    return new_obj || obj;
}

Cyclic array test...

a = []
a.push("b", "c", a)
aa = clone(a)
aa === a //=> false
aa[2] === a //=> false
aa[2] === a[2] //=> false
aa[2] === aa //=> true

Function test...

f = new Function
f.a = a
ff = clone(f)
ff === f //=> true
ff.a === a //=> false
link|improve this answer
feedback

This is the fastest method I have created that doesn't use the prototype, so it will maintain hasOwnProperty in the new object. The solution is to iterate the top level properties of the original object, make 2 copies, delete each property from the original and then reset the original object and return the new copy. It only has to iterate as many times as top level properties. This saves all the if conditions to check if each property is a function/object/string etc, and doesn't have to iterate each descendant property. The only drawback is that the original object must be supplied with its original created namespace, in order to reset it.

copyDeleteAndReset:function(namespace,strObjName){
    var obj = namespace[strObjName],
    objNew = {},objOrig = {};
    for(i in obj){
        if(obj.hasOwnProperty(i)){
            objNew[i] = objOrig[i] = obj[i];
            delete obj[i];
        }
    }
    namespace[strObjName] = objOrig;
    return objNew;
}

var namespace = {};
namespace.objOrig = {
    '0':{
        innerObj:{a:0,b:1,c:2}
    }
}

var objNew = copyDeleteAndReset(namespace,'objOrig');
objNew['0'] = 'NEW VALUE';

console.log(objNew['0']) === 'NEW VALUE';
console.log(namespace.objOrig['0']) === innerObj:{a:0,b:1,c:2};
link|improve this answer
feedback

If you're using it, the underscore.js library has a clone method.

var newObject = _.clone(oldObject);
link|improve this answer
feedback

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|improve this answer
Sorry roosteronacid, I didn't realise someone had provided this solution. I guess thats proof that it will work. – Bob May 24 '09 at 10:26
4  
Best solution. I am using your one. Proved again that the highest voted answer on SO is not necessarily the best one. – CDR Jan 4 '10 at 12:28
3  
-1 As with roosteronacid's suggestion, this is wrong. Inheritance is not the same as cloning. After "cloning", see what happens to the "clone" if you change something on the original object... – Alconja Mar 25 '10 at 3:20
2  
-1 Prototypical inheritence is NOT the same as cloning. – Tomas Mar 25 '10 at 10:04
2  
-1 This is inheritance, not cloning. – Tin Jan 4 '11 at 8:12
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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