jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
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.
In the current moment, the fastest way to clone an object is using the Cached Douglas Crockfords Object.create clone function.
<script src="http://code.jquery.com/jquery-2.0.3.js" type="text/javascript"></script>
<script>
var oldObject = {
a: 1,
b: 2,
c: 3,
d: 4,
e: 5,
f: 6,
g: 7
};
function clone(obj) {
var target = {};
for (var i in obj) {
if (obj.hasOwnProperty(i)) {
target[i] = obj[i];
}
}
return target;
}
Object.defineProperties(Object, {
'extend': {
'configurable': true,
'enumerable': false,
'value': function extend(what, wit) {
var extObj, witKeys = Object.keys(wit);
extObj = Object.keys(what).length ? Object.clone(what) : {};
witKeys.forEach(function(key) {
Object.defineProperty(extObj, key, Object.getOwnPropertyDescriptor(wit, key));
});
return extObj;
},
'writable': true
},
'clone': {
'configurable': true,
'enumerable': false,
'value': function clone(obj) {
return Object.extend({}, obj);
},
'writable': true
}
});
//Crockford clone function
function object(o) {
function F() {}
F.prototype = o;
return new F();
}
//Crockford cashed clone function
if (typeof Object.create !== "function") {
Object.create = (function () {
function FC() {} // created only once
return function (o) {
FC.prototype = o; // reused on each invocation
return new FC();
};
})();
}
// Nodejs util _extend
function nodeextend (origin, add) {
// Don't do anything if add isn't an object
if (!add || typeof add !== 'object') return origin;
var keys = Object.keys(add);
var i = keys.length;
while (i--) {
origin[keys[i]] = add[keys[i]];
}
return origin;
};
function recursive(obj){
if(obj == null || typeof(obj) != 'object')
return obj;
var temp = obj.constructor(); // changed
for(var key in obj)
temp[key] = recursive(obj[key]);
return temp;
}
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
JQuery.extend deep |
| ready |
JSON |
| ready |
JQuery.extend |
| ready |
simple clone function |
| ready |
ES5 Object.clone |
| ready |
Crockford Clone Function |
| ready |
Crockford Cashed Clone |
| ready |
Nodejs require('util')._extend |
| ready |
recursive |
| ready |
Simple for..in Function |
| ready |
known props |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.