What is the most efficent way to clone a JavaScript object? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T20:44:29Zhttp://stackoverflow.com/feeds/question/122102http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object36What is the most efficent way to clone a JavaScript object?jschrab2008-09-23T16:26:09Z2009-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#1221302Answer by erlando for What is the most efficent way to clone a JavaScript object?erlando2008-09-23T16:28:57Z2008-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#1221909Answer by ConroyP for What is the most efficent way to clone a JavaScript object?ConroyP2008-09-23T16:38:51Z2008-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#1222200Answer by roosteronacid for What is the most efficent way to clone a JavaScript object?roosteronacid2008-09-23T16:43:38Z2008-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#1222322Answer by Mark Cidade for What is the most efficent way to clone a JavaScript object?Mark Cidade2008-09-23T16:45:39Z2008-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#122704116Answer by John Resig for What is the most efficent way to clone a JavaScript object?John Resig2008-09-23T18:09:37Z2008-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#7967380Answer by Omar Muwahed for What is the most efficent way to clone a JavaScript object?Omar Muwahed2009-04-28T08:01:28Z2009-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#9034860Answer by Bob for What is the most efficent way to clone a JavaScript object?Bob2009-05-24T10:21:22Z2009-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#10426761Answer by Kamarey for What is the most efficent way to clone a JavaScript object?Kamarey2009-06-25T07:53:06Z2009-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 && 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#18913770Answer by Alan for What is the most efficent way to clone a JavaScript object?Alan2009-12-11T22:47:19Z2009-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>