show/hide this revision's text 3 fixed spelling/grammar

What is the most efficent way to clone a Javascript JavaScript object?

What is the most efficent efficient way to clone a Javascript JavaScript object? I've seen:

obj = eval(uneval(o));

But that's not cross platform (FF only). I've done (in Mootools 1.2) things like this:

obj = JSON.decode(JSON.encode(o));

But question the efficiency. I've also seen recursive copying function, etc. I'm pretty surprised that out-of-the-box Javascript JavaScript doesn't have a method for doing this.

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

What is the most efficent way to clone a Javascript object?

What is the most efficent way to clone a Javascript object? I've seen:

obj = eval(uneval(o));

But that's not cross platform (FF only). I've done (in Mootools 1.2) things like this:

obj = JSON.decode(JSON.encode(o));

But question the efficiency. I've also seen recursive copying function, etc. I'm pretty surprised that out-of-the-box Javascript doesn't have a method for doing this.