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.
