Javascript cloning objects

I haven’t posted for a while as I’ve been busy but I thought I’d post about object cloning because it’s a useful tip and can be used in many situations like browser hacking or general web development. I posted this to the sla.ckers forum a while ago but in case you missed it here goes….

When cloning a object in Javascript many of the examples I found used for(i in..) to traverse the properties and copy each of them. There is a nicer way to do this using the uneval function like this:-

obj={a:1,a:2}
function clone(o) {
 return eval(uneval(o));
}
obj2 = clone(obj);
obj2.a=0;
alert(obj.a);
alert(obj2.a);

Giorgio Maone pointed out that it would be nice to prototype the code to make it easier to implement:-

Object.prototype.clone = function() {
  return eval(uneval(this));
}
alert("test".clone());
alert((3).clone());
alert(clone.clone());

14 Responses to “Javascript cloning objects”

  1. Hakan Bilgin writes:

    Hi Gareth,
    Great tips! Unfortunately, if the object contains a reference to an HTML or XML element, those references is not cloned (of course). Which in turn makes this solution a little inadequate.

    Yet, thanx for the trick!

  2. pdp writes:

    of course that works with FF and a few other browsers only. The more universal way of doing the same is exactly what I used in CoreAPI: http://www.gnucitizen.org/projects/coreapi/

    CoreAPI.clone = function (o) {
    function c(o) {
    for (var i in o) {
    this[i] = o[i];
    }
    }

    return new c(o);
    };

  3. Gareth Heyes writes:

    @pdp

    Damn I thought it worked in IE7 ah well neat trick anyways

  4. kourge writes:

    It is bad practice to mingle with Object.prototype because it messes up property enumeration. Just google “Object.prototype is verboten” and a zillion arguments will appear. The Prototype JavaScript library once did this in 1.3 – with bad results.
    The fix is to instead tack methods on to the global Object. For example:
    Object.clone = function(object) { return eval(uneval(object)); };

  5. Gareth Heyes writes:

    @kourge

    Nice tip and good point

  6. kymin writes:

    Have you not about c & c++ ‘s book ?
    Post my E-mail,thank you

  7. Mikael Grave writes:

    Your eval/uneval idea inspired me a cross-browser solution for those using YUI:

    function clone = function( obj ) {
    return YAHOO.lang.JSON.parse( YAHOO.lang.JSON.stringify( obj ) );
    }

    Tested fine with IE6 and FF2. Especially convenient for cloning arrays, hashs of arrays, arrays of hashs, etc.

    Not sure about the performances. Might slow down your app if used to massively clone objects…

  8. alex writes:

    eval(uneval())
    does not work for me

  9. Gareth Heyes writes:

    @alex

    It’s Firefox only

  10. numericalexample.com writes:

    The following function is a variant on Mikael Grave’s browser independent solution with the JSON library:

    
    
    
  11. cygro writes:

    Nice approach.
    Unfortunately it works only in Firefox (breaks in Chrome, Safari and IE). Therefore useless for production use (unless you can restrict access to Firefox users only)…

  12. Praveen writes:

    Another implementation that worked for me.

    var originalJSONObj = this.jsonPanelData.fieldList; //fieldList is the json object being passed from server side
    var clonedJSONObj = this.deepCloneJSON(originalJSONObj); //clonedJSONObj is the cloned object

    deepCloneJSON: function(obj) {
    var outpurArr = new Array();
    for (var i in obj) {
    outpurArr[i] = typeof (obj[i]) == ‘object’ ? this.deepCloneJSON(obj[i]) : obj[i];
    }
    return outpurArr;
    },

  13. Tipsy Snake writes:

    So, this is nice for FF, but in Opera 10.50 still doesn’t work.
    But thanks to Praveen I have such idea for Opera:

    function clone(o) {
    return eval(‘(‘ + JSON.stringify(o) + ‘)’);
    }

  14. Gareth Heyes writes:

    @Tipsy Snake

    That also works in IE8 🙂