Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I used this clone method: oranlooney.com/static/javascript/deepCopy.js – David Silva Smith Nov 29 '10 at 22:59
32  
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
140  
Eval is not evil. Using eval poorly is. If you are afraid of its side effects you are using it wrong. The side effects you fear are the reasons to use it. Did any one by the way actually answer your question? – James Andino Mar 22 '12 at 14:08
16  
Regarding the jQuery tag -- the OP did not tag the question jQuery, the question's text does not mention jQuery. Indeed, the question specifically mentions "out-of-the-box". If any library tag would be appropriate, it would be mootools. Let's not have an edit war, this is not a jQuery question. – Chris Jul 3 '12 at 18:56
6  
Blindly following this algorithm is not good. if(question.match(/\beval\b/)){ append_comment("Eval is evil");}. You must now when its Evil. Thanks @JamesAndino for such a nice comment. – shiplu.mokadd.im Sep 19 '12 at 13:43
show 1 more comment

30 Answers

up vote 1731 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.

share|improve this answer
381  
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
54  
The extend function doesn't clone Date and RegEx objects. Tested with 1.3.2 version. – Kamarey Jun 25 '09 at 7:41
30  
@apphacked: Not in the question, but it is tagged jquery – Bart van Heukelom Sep 12 '10 at 22:02
62  
Why does an answer that isn't even relevant to the question get a zillion up–votes? – RobG Dec 5 '11 at 5:12
29  
It doesn't even answer the question... and it gets almost thousand votes. Crazy! – Derek 朕會功夫 Apr 30 '12 at 0:12
show 31 more comments

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.

share|improve this answer
1  
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
13  
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
5  
+1 @Glenjamin - the OP was about cloning, not copying. – RobG Dec 5 '11 at 8:48
15  
Great answer! million times better than John Resig's answer above. +1 – Imdad May 30 '12 at 4:46
2  
Better answer than John Resig's for sure.... – nahum Nov 15 '12 at 19:11
show 3 more comments

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.

share|improve this answer
5  
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
1  
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
Similar to limscoder's answer, see my answer below on how to do this without calling the constructor: stackoverflow.com/a/13333781/560114 – Matt Browne Nov 11 '12 at 17:55

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;
    }
share|improve this answer
1  
This does not seem right. cloneObject({ name: null }) => {"name":{}} – Niyaz Feb 27 at 14:36
This is due to another dumb thing in javascript typeof null > "object" but Object.keys(null) > TypeError: Requested keys of a value that is not an object. change the condition to if(typeof(obj[i])=="object" && obj[i]!=null) – Vitim.us Apr 16 at 16:42

@David why not just use:

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

?

share|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
8  
the con of this approach as I've just found is if your object has any functions (mine has internal getters & setters) then these are lost when stringified.. If that's all you need this method is fine.. – Markive Jan 17 at 11:00
show 1 more comment
var clone = function() {
    var newObj = (this instanceof Array) ? [] : {};
    for (var i in this) {
        if (this[i] && typeof this[i] == "object") {
            newObj[i] = this[i].clone();
        }
        else
        {
            newObj[i] = this[i];
        }
    }
    return newObj;
}; 

Object.defineProperty( Object.prototype, "clone", {value: clone, enumerable: false});
share|improve this answer
1  
You should format your code (add 4 spaces before each line) – Eric Bréchemier Dec 26 '09 at 15:45
Nice! I've added a small fix to ensure that 'clone' is non-enumerable, ie we can safely run for loops etc and 'clone' won't appear as a key. – nailer Oct 15 '12 at 9:21

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);
share|improve this answer
5  
I like this one! Specially because I wasn't using jQuery. – Tom Roggero Nov 7 '11 at 20:08
3  
@Joe: I don't understand in what way this is relevant to the question. – Marco Demaio Apr 20 '12 at 13:14
3  
This answer is not really relevant because the question is: given instance b how does one create copy c WHILE not knowing about factory a or not wanting to use factory a. The reason one may not want to use the factory is that after instantiation b may have been initialised with additional data (e.g. user input). – Noel Abrahams May 8 '12 at 9:57
1  
It's true that this is not really an answer to the question, but I think it's important that it be here because it is the answer to the question I suspect many of the people coming here are really meaning to ask. – Semicolon Mar 6 at 23:31

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);
share|improve this answer
1  
thanks, this fixed my problem – Eugene Ramirez Aug 6 '12 at 3:22
3  
+1 for taking into account things like Date and RegExp, which neither jQuery nor Underscore do – Justin Warkentin Oct 3 '12 at 16:56

HTML5 includes a way to create deep clones of objects. It only works for some built-in types, but it's considerably more flexible than using JSON: the internal structured clone algorithm also supports Dates, RegExps, Files, Blobs, FileLists, ImageDatas, sparse Arrays, types defined in other specification such as Typed Arrays, and recursive/cyclical structures.

Sadly, this feature is not directly exposed through any API. Here are two ways that structured clones can be created. Both have drawbacks that make them unsuitable in many cases. Hopefully it will one day be possible to created structured clones without any side effects.


history.pushState() and history.replaceState() both create a structured clone of their first argument, and assign that value to history.state. You can use this to create a structured clone of any object like this:

function structuredClone(obj) {
    var oldState = history.state;
    history.replaceState(obj);
    var clonedObj = history.state;
    history.replaceState(oldState);
    return clonedObj;
}

Example Usage (jsfiddle)

var original = { date: new Date(), number: Math.random() };
original.self = original;

var clone = structuredClone(original);

// They're different objects:
console.log(original !== clone);
console.log(original.date !== clone.date);

// They're cyclical:
console.log(original.self === original);
console.log(clone.self === clone);

// They contain equivalent values:
console.log(original.number === clone.number);
console.log(Number(original.date) === Number(clone.date));

This shouldn't leave any trace in the browser's history, but it is very slow and may cause the browser to begin to briefly display its loading animation. If you attempt to clone many objects at once, it may cause the browser (including other tabs and windows) to become unresponsive until the cloning is complete. (The cloning itself isn't slow; that's a side-effect of manipulating the history.)


The alternative is to call the window.postMessage method to send a message containing the target object to window, then listen for the message event containing the cloned object. Unfortunately, this is inherently asynchronous.

If asynchronous cloning is acceptable, here's a asyncStructuredClone(original, callback(clone)) function which will produce a structured clone of a target object and pass it to your callback. An exception will be raised if you attempt to clone an unsupported object.

var pendingCallbacks = {};

window.addEventListener('message', function(e) {
    var cloneId = e.data.cloneId,
        clonedValue = e.data.value;

    if (e.source === window && cloneId && cloneId in pendingCallbacks) {
        var callback = pendingCallbacks[cloneId];
        delete pendingCallbacks[cloneId];
        callback(clonedValue);
    }
});

var asyncStructuredClone = function(o, callback) {
    var cloneId = String(Math.random());
    pendingCallbacks[cloneId] = callback;
    window.postMessage({ value: o, cloneId: cloneId }, '*');
};

Example Usage (jsfiddle)

var original = { date: new Date(), number: Math.random() };
original.self = original;

asyncStructuredClone(original, function(clone) {
    // They're different objects:
    console.log(original !== clone);
    console.log(original.date !== clone.date);

    // They're cyclical:
    console.log(original.self === original);
    console.log(clone.self === clone);

    // They contain equivalent values:
    console.log(original.number === clone.number);
    console.log(Number(original.date) === Number(clone.date));
});
share|improve this answer
1  
This one is truly neat! +1 – pimvdb Jul 7 '12 at 20:05
Oh, it doesn't actually work for custom constructor instances. Here's a patched version: jsfiddle.net/KnrM6/1. (Also takes care of cyclic custom instances.) – pimvdb Jul 7 '12 at 20:19
I was pretty sure there was a way to do a synchronous structured clone... not yet? – rynah May 4 at 14:50
@rynah I just looked through the spec again and you're right: the history.pushState() and history.replaceState() methods both synchronously set history.state to a structured clone of their first argument. A little weird, but it works. I'm updating my answer now. – Jeremy Banks May 6 at 3:11
@rynah Thank you! – Jeremy Banks May 10 at 14:35

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

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

share|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

In Prototype you would do something like

newObject = Object.clone(myObject);

The Prototype documentation notes that this makes a shallow copy.

share|improve this answer

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)
share|improve this answer
8  
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

There’s a library (called “clone”), that does this quite well. It provides the most complete recursive cloning/copying of arbitrary objects that I know of. It also supports circular references, which is not covered by the other answers, yet.

You can find it on npm, too. It can be used for the browser as well as Node.js.

Here is an example on how to use it:

Install it with

npm install clone

or package it with Ender.

ender build clone [...]

You can also download the source code manually.

Then you can use it in your source code.

var clone = require('clone');

var a = { foo: { bar: 'baz' } };  // inital value of a
var b = clone(a);                 // clone a -> b
a.foo.bar = 'foo';                // change a

console.log(a);                   // { foo: { bar: 'foo' } }
console.log(b);                   // { foo: { bar: 'baz' } }

(Disclaimer: I’m the author of the library.)

share|improve this answer
function clone(obj)
 { var clone = {};
   clone.prototype = obj.prototype;
   for (property in obj) clone[property] = obj[property];
   return clone;
 }
share|improve this answer
10  
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
just make it recursive so the sub objects will be cloned deeply. – Giovanni P Jan 25 at 22:38
just curious ... wont be the clone variable will have the pointers to the properties of the original object? because it seems no new memory allocation – Rupesh Patel Feb 4 at 9:42
Yes. This is just a shallow copy, so the clone will point to the exact same objects pointed-to by the original object. – Mark Cidade Feb 4 at 10:18

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 ;(

share|improve this answer

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

var newObject = _.clone(oldObject);
share|improve this answer
10  
this is a shallow clone only. – Mitya Apr 20 '12 at 18:35
2  
lodash has a cloneDeep method, it also support another param to clone to make it deep: lodash.com/docs#clone and lodash.com/docs#cloneDeep – opensas Mar 2 at 17:14
function deepClone(obj, CloneObj) {
       CloneObj.clear();
       jQuery.each(obj, function(i, val) {
           var newObject = jQuery.extend(true, {}, val);
           CloneObj[i] = newObject;
       });
   }
share|improve this answer

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);
share|improve this answer

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.

share|improve this answer
3  
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
20  
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
6  
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

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
share|improve this answer

Here's a version of ConroyP's answer above that works even if the constructor has required parameters:

//If Object.create isn't already defined, we just do the simple shim, without the second argument,
//since that's all we need here
var object_create = Object.create;
if (typeof object_create !== 'function') {
    object_create = function(o) {
        function F() {}
        F.prototype = o;
        return new F();
    };
}

function deepCopy(obj) {
    if(obj == null || typeof(obj) !== 'object'){
        return obj;
    }
    //make sure the returned object has the same prototype as the original
    var ret = object_create(obj.constructor.prototype);
    for(var key in obj){
        ret[key] = deepCopy(obj[key]);
    }
    return ret;
}

This function is also available in my simpleoo library.

Edit:

Here's a more robust version:

function deepCopy(src) {
    if(src == null || typeof(src) !== 'object'){
        return src;
    }

    //Honor native/custom clone methods
    if(typeof src.clone == 'function'){
        return src.clone(true);
    }

    //Special cases:
    //Date
    if (src instanceof Date){
        return new Date(src.getTime());
    }
    //RegExp
    if(src instanceof RegExp){
        return new RegExp(src);
    }
    //DOM Elements
    if(src.nodeType && typeof src.cloneNode == 'function'){
        return src.cloneNode(true);
    }

    //If we've reached here, we have a regular object, array, or function

    //make sure the returned object has the same prototype as the original
    var proto = (Object.getPrototypeOf ? Object.getPrototypeOf(src): src.__proto__);
    if (!proto) {
        proto = src.constructor.prototype; //this line would probably only be reached by very old browsers 
    }
    var ret = object_create(proto);

    for(var key in src){
        //Note: this does NOT preserve ES5 property attributes like 'writable', 'enumerable', etc.
        //That could be achieved by using Object.getOwnPropertyNames and Object.defineProperty
        ret[key] = deepCopy(src[key]);
    }
    return ret;
}
share|improve this answer

// 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;
  };
share|improve this answer

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

share|improve this answer

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);            
}
share|improve this answer

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};
share|improve this answer

In YUI you can do Deep object/array copy by

//For Safe clone.. in case where you need to delete items on the cloned objects
clonedObj = Y.Clone(obj, true); 

//For Unsafe clone
clonedObj = Y.Clone(obj, false); 

More details

share|improve this answer

Shallow copy one-liner (ECMAScript 5th edition) :

var origin = { foo : {} };
var copy = Object.keys(origin).reduce(function(c,k){c[k]=origin[k];return c;},{});

console.log(origin, copy);
console.log(origin == copy); // false
console.log(origin.foo == copy.foo); // true
share|improve this answer

Here is a comprehensive clone() method that can clone any js object. It handles almost all the cases:

function clone(src, deep) {

    var toString = Object.prototype.toString;
    if(!src && typeof src != "object"){
        //any non-object ( Boolean, String, Number ), null, undefined, NaN
        return src;
    }

    //Honor native/custom clone methods
    if(src.clone && toString.call(src.clone) == "[object Function]"){
        return src.clone(deep);
    }

    //DOM Elements
    if(src.nodeType && toString.call(src.cloneNode) == "[object Function]"){
        return src.cloneNode(deep);
    }

    //Date
    if(toString.call(src) == "[object Date]"){
        return new Date(src.getTime());
    }

    //RegExp
    if(toString.call(src) == "[object RegExp]"){
        return new RegExp(src);
    }

    //Function
    if(toString.call(src) == "[object Function]"){
        //Wrap in another method to make sure == is not true;
        //Note: Huge performance issue due to closures, comment this :)
        return (function(){
            src.apply(this, arguments);
        });

    }

    var ret, index;
    //Array
    if(toString.call(src) == "[object Array]"){
        //[].slice(0) would soft clone
        ret = src.slice();
        if(deep){
            index = ret.length;
            while(index--){
                ret[index] = clone(ret[index], true);
            }
        }
    }
    //Object
    else {
        ret = src.constructor ? new src.constructor() : {};
        for (var prop in src) {
            ret[prop] = deep
                ? clone(src[prop], true)
                : src[prop];
        }
    }

    return ret;
};
share|improve this answer

I have two good answers depending on whether your objective is to clone a "plain old javascript object" or not.

Let's also assume that your intention is to create a complete clone with no prototype references back to the source object. If you're not interested in a complete clone, then you can use many of the Object.clone() routines provided in some of the other answers (Crockford's pattern).

For plain old JavaScript objects, a tried and true good way to clone an object in modern runtimes is quite simply:

var clone = JSON.parse(JSON.stringify(obj));

Note that the source object must be a pure JSON object. This is to say, all of its nested properties must be scalars (like boolean, string, array, object, etc). Any functions or special objects like RegExp or Date will not be cloned.

Is it efficient? Heck yes. We've tried all kinds of cloning methods and this works best. I'm sure some ninja could conjure up a faster method. But I suspect we're talking about marginal gains.

This approach is just simple and easy to implement. Wrap it into a convenience function and if you really need to squeeze out some gain, go for at a later time.

Now, for non-plain JavaScript objects, there isn't a really simple answer. In fact, there can't be because of the dynamic nature of JavaScript functions and inner object state. Deep cloning a JSON structure with functions inside requires you recreate those functions and their inner context. And JavaScript simply doesn't have a standardized way of doing that.

The correct way to do this, once again, is via a convenience method that you declare and reuse within your code. The convenience method can be endowed with some understanding of your own objects so you can make sure to properly recreate the graph within the new object.

We're written our own but the best general approach I've seen is covered here:

http://davidwalsh.name/javascript-clone

This is the right idea. The author (David Walsh) has commented out the cloning of generalized functions. This is something you might choose to do, depending on your use case.

The main idea is that you need to special handle the instantiation of your functions (or prototypal classes, so to speak) on a per-type basis. Here, he's provided a few examples for RegExp and Date.

Not only is this code brief but it's also very readable. It's pretty easy to extend.

Is this efficient? Heck yes. Given that the goal is to produce a true deep-copy clone, then you're going to have to walk the members of the source object graph. With this approach, you can tweak exactly which child members to treat and how to manually handle custom types.

So there you go. Two approaches. Both efficient in my view.

share|improve this answer

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")
    ...
}
share|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
6  
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
8  
-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
3  
-1 Prototypical inheritence is NOT the same as cloning. – Tomas Mar 25 '10 at 10:04
3  
-1 This is inheritance, not cloning. – Tin Jan 4 '11 at 8:12
show 4 more comments

protected by adarshr Jul 31 '12 at 20:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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