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.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
var oldObject = {
a: 1,
b: 2,
c: 3,
d: 4,
e: 5,
f: function() {
return 6;
},
g: [7, 8, 9],
h: {
a: 1,
b: 2,
c: 3
}
};
function replicate(obj) {
return {
a: obj.a,
b: obj.b,
c: obj.c,
d: obj.d,
e: obj.e,
f: obj.f,
g: obj.g,
h: obj.h
};
}
function clone_keys(obj) {
var target = {};
var keys = Object.keys(obj)
for (var i = 0; i < keys.length; i++) {
var key = keys[i]
if (obj.hasOwnProperty(key)) {
target[key] = obj[key]
}
}
return target;
}
function clone(obj) {
var target = {};
for (var i in obj) {
if (obj.hasOwnProperty(i)) {
target[i] = obj[i];
}
}
return target;
}
function deepClone(obj) {
if (obj == null || typeof obj !== 'object') {
return obj;
}
var target = obj.constructor();
for (var key in obj) {
if (obj.hasOwnProperty(key)) {
target[key] = deepClone(obj[key]);
}
}
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
}
});
function evalKeys(o) {
console.log(o);
var keys = Object.keys(o);
var assign = 'var newO = {';
var first = true;
for (var i = 0; i < keys.length; i++) {
assign += (first ? '' : ',') + keys[i] + ':o.' + keys[i];
first = false;
}
assign += '}';
eval(assign);
return newO;
}
Ready to run.
Test | Ops/sec | |
---|---|---|
jQuery.extend() deep |
| ready |
JSON stringify/parse |
| ready |
jQuery.extend() |
| ready |
clone with Object.keys() function |
| ready |
ES5 Object.clone |
| ready |
stringify eval |
| ready |
replicate function |
| ready |
clone function |
| ready |
deepClone function |
| ready |
eval + keys |
| ready |
cloneNode |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.