cloning an object (v35)

Revision 35 of this benchmark created by Michael on


Description

There is no quick and easy facility for cloning an object, Some people recommend using JQuery.extend others JSON.parse/stringify

http://stackoverflow.com/questions/122102/what-is-the-most-efficient-way-to-clone-a-javascript-object

If you want the fastest possible clone function. I would personally anticipate the data structure of your object and write a custom clone to handle it.

Setup

var oldObject = {
                        a : 1,
                        b : 2,
                        c : 3,
                        d : 4,
                        e : 5,
                        f : function() {
                                return 6;
                        },
                        g : [ 7, 8, 9 ]
                };
    
                function clone(obj) {
                        var target = {};
                        for ( var i in obj) {
                                if (obj.hasOwnProperty(i)) {
                                        target[i] = obj[i];
                                }
                        }
                        return target;
                }
    
                function twin(obj) {
                        var target = {};
                        var keys = Object.keys( obj );
                        for ( var i = 0; i < keys.length; i++) {
                                target[i] = obj[ keys[i] ];
                        }
                        return target;
                }

Test runner

Ready to run.

Testing in
TestOps/sec
clone
var newObject = clone( oldObject );
ready
twin
var newObject = twin( oldObject );
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.