What is the most efficent way to clone a JavaScript object? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:44:29Z http://stackoverflow.com/feeds/question/122102 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object 36 What is the most efficent way to clone a JavaScript object? jschrab 2008-09-23T16:26:09Z 2009-12-11T22:47:19Z <p>What is the most efficient way to clone a JavaScript object? I've seen:</p> <p>obj = eval(uneval(o));</p> <p>But that's not cross platform (FF only). I've done (in Mootools 1.2) things like this:</p> <p>obj = JSON.decode(JSON.encode(o));</p> <p>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.</p> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/122130#122130 2 Answer by erlando for What is the most efficent way to clone a JavaScript object? erlando 2008-09-23T16:28:57Z 2008-09-23T16:28:57Z <p>In Prototype you would do something like</p> <pre><code>newObject = Object.clone(myObject); </code></pre> <p>The <a href="http://prototypejs.org/api/object/clone" rel="nofollow">Prototype documentation</a> notes that this makes a shallow copy.</p> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/122190#122190 9 Answer by ConroyP for What is the most efficent way to clone a JavaScript object? ConroyP 2008-09-23T16:38:51Z 2008-09-23T16:51:00Z <p>There doesn't seem to be an in-built one, you could try:</p> <pre><code>function clone(obj){ if(obj == null || typeof(obj) != 'object') return obj; var temp = obj.constructor(); // changed for(var key in obj) temp[key] = clone(obj[key]); return temp; } </code></pre> <p>There's a lengthy post with many contributing comments on <a href="http://keithdevens.com/weblog/archive/2007/Jun/07/javascript.clone" rel="nofollow">Keith Deven's blog</a>.</p> <p>If you want to stick to a framework, JQuery also has a <a href="http://docs.jquery.com/Manipulation/clone" rel="nofollow"><code>clone()</code> function</a>:</p> <pre><code>// Clone current element var cloned = $(this).clone(); </code></pre> <p>There were <a href="http://www.fusioncube.net/index.php/jquery-clone-bug-in-internet-explorer" rel="nofollow">reported issues</a> previously with this not working in Internet Explorer, but these were resolved as of version 1.2.3.</p> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/122220#122220 0 Answer by roosteronacid for What is the most efficent way to clone a JavaScript object? roosteronacid 2008-09-23T16:43:38Z 2008-09-23T16:49:06Z <p>I would clone an object like this:</p> <pre><code>Object.prototype.clone = function () { function F() {} F.prototype = this; return new F(); }; function User(_name, _age) { this.name = _name; this.age = _age; } var thomas = new User("Thomas", "26"); alert(thomas.name); var thomasClone = thomas.clone(); alert(thomasClone.name); </code></pre> <p>I would say that this is actually <em>copying</em>, since the data in the <code>thomas</code> object is reflected in the <code>thomasClone</code> object.</p> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/122232#122232 2 Answer by Mark Cidade for What is the most efficent way to clone a JavaScript object? Mark Cidade 2008-09-23T16:45:39Z 2008-09-23T16:45:39Z <pre><code>function clone(obj) { var clone = {}; clone.prototype = obj.prototype; for (property in obj) clone[property] = obj[property]; return clone; } </code></pre> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/122704#122704 116 Answer by John Resig for What is the most efficent way to clone a JavaScript object? John Resig 2008-09-23T18:09:37Z 2008-09-23T18:22:08Z <p>I want to note that the .clone() method in jQuery only clones DOM elements - in order to clone JavaScript objects you would do:</p> <pre> // Shallow copy var newObject = jQuery.extend({}, oldObject); // Deep copy var newObject = jQuery.extend(true, {}, oldObject);</pre> <p>More information can be found in the <a href="http://docs.jquery.com/Utilities/jQuery.extend" rel="nofollow">jQuery documentation</a>.</p> <p>I also want to note that the deep copy is actually much smarter than what is shown above - it's able to avoid many traps (trying to deep extend a DOM element, for example). It's used frequently in jQuery core and in plugins to great effect.</p> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/796738#796738 0 Answer by Omar Muwahed for What is the most efficent way to clone a JavaScript object? Omar Muwahed 2009-04-28T08:01:28Z 2009-04-28T08:01:28Z <pre><code>function deepClone(obj, CloneObj) { CloneObj.clear(); jQuery.each(obj, function(i, val) { var newObject = jQuery.extend(true, {}, val); CloneObj[i] = newObject; }); } </code></pre> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/903486#903486 0 Answer by Bob for What is the most efficent way to clone a JavaScript object? Bob 2009-05-24T10:21:22Z 2009-05-24T10:21:22Z <p>Has anyone tried this?</p> <pre><code>Object.clone = function () { var ClonedObject = function(){}; ClonedObject.prototype = this; return new ClonedObject; } </code></pre> <p>It seems to work and I can't see what pitfalls would be. In my tests the cloned object is <code>instanceof</code> the correct objects.</p> <p>Note: it could also be implemented as a standalone function, i.e.</p> <pre><code>function clone(object) { // (replace "this" with "object") ... } </code></pre> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/1042676#1042676 1 Answer by Kamarey for What is the most efficent way to clone a JavaScript object? Kamarey 2009-06-25T07:53:06Z 2009-06-25T07:53:06Z <p>Code:</p> <pre><code>// extends 'from' object with members from 'to'. If 'to' is null, a deep clone of 'from' is returned function extend(from, to) { if (from == null || typeof from != "object") return from; if (from.constructor != Object &amp;&amp; from.constructor != Array) return from; if (from.constructor == Date || from.constructor == RegExp || from.constructor == Function || from.constructor == String || from.constructor == Number || from.constructor == Boolean) return new from.constructor(from); to = to || new from.constructor(); for (var name in from) { to[name] = typeof to[name] == "undefined" ? this.extend(from[name], null) : to[name]; } return to; } </code></pre> <p>Test:</p> <pre><code>var obj = { date: new Date(), func: function(q) { return 1 + q; }, num: 123, text: "asdasd", array: [1, "asd"], regex: new RegExp(/aaa/i), subobj: { num: 234, text: "asdsaD" } } var clone = extend(obj); </code></pre> http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/1891377#1891377 0 Answer by Alan for What is the most efficent way to clone a JavaScript object? Alan 2009-12-11T22:47:19Z 2009-12-11T22:47:19Z <p>This is what I'm using:</p> <pre><code>function cloneObject(obj) { var clone = {}; for(var i in obj) { if(typeof(obj[i])=="object") clone[i] = cloneObject(obj[i]); else clone[i] = obj[i]; } return clone; } </code></pre>