111
votes
What is the most efficent way to clone a JavaScript object?
I want to note that the .clone() method in jQuery only clones DOM elements - in order to clone JavaScript objects you would do:
// Shallow copy
var newObject = jQuery.extend({}, oldOb …
