Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The below first logs 0, and then logs 1. How do I store a copy of the object, rather than a reference to it?

debug.log(vi.details.segment);
vi.nextSegment = vi.details;
vi.nextSegment.segment++;
debug.log(vi.details.segment);
share|improve this question

3 Answers

up vote 12 down vote accepted

To clone an object in jQuery:

var vi.nextSegment = jQuery.extend({}, vi.details);

To do a deep copy, you can do

var vi.nextSegment = jQuery.extend(true, {}, vi.details);

To read up more on extend, see here.

share|improve this answer
That isn't a deep copy. var a = {b: [1, 2]}; $.extend({}, a).b[0] = 'test'; and a.b[0] will be changed to 'test'. To do a deep copy, put true as the first argument: $.extend(true, {}, a); – Reid Mar 19 '11 at 20:25
I forgot to include deep copy, I just edited my answer. – Mike Lewis Mar 19 '11 at 20:26
One gothcha that just got me: jQuery.extend(true, {}, obj); will create a copy. jQuery.extend(true, obj, {}); will not. – worldsayshi Apr 21 at 21:41

Take a look at the post: What is the most efficient way to clone a javascript object

As per John Resig's answer:

// Shallow copy
var newObject = jQuery.extend({}, oldObject);

// Deep copy
var newObject = jQuery.extend(true, {}, oldObject);

More information can be found in the jQuery documentation.

share|improve this answer

This worked better for me cloning an object using jQuery "parseJSON()" and "JSON.stringify()"

$.ajax({
  url: 'ajax/test.html',
  dataType: 'json',
  success: function(data) {
    var objY = $.parseJSON(JSON.stringify(data));
    var objX = $.parseJSON(JSON.stringify(data));
  }
});

Cloning data object in objX & objY are two different object, you do no have to mess up with the "by reference" problem

Gracias!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.