New in browsers that support EcmaScript5 you can use Object.create() to clone an object. This should be the fastest way possible.
var obj = {yes: 1, no: 2, maybe: [1,2,3,4]};
var test = Object.create(obj);
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.
eval()is evil. Even if targeting a browser whereeval(uneval(o));works I would definitely avoid that technique. – editor Nov 5 '11 at 18:44