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

Pretty self evident question...When using .push() on an array in javascript, is the object pushed into the array a pointer (shallow) or the actual object (deep) regardless of type.

share|improve this question

2 Answers

up vote 12 down vote accepted

It depends upon what you're pushing. Objects and arrays are pushed by reference. Built-in types like numbers are pushed as a copy.

var array = [];
var x = 4;
var y = {name: "test", type: "data", data: "2-27-2009"};

// pushes a copy
array.push(x);
x = 5;
alert(array[0]);    // alerts 4 because it's a copy

// pushes a reference
array.push(y);
y.name = "foo";
alert(array[1].name);   // alerts "foo" because it's a reference

Working demo of this code: http://jsfiddle.net/jfriend00/5cNQr/

share|improve this answer

jfriend00 is right on the mark here, but one small clarification: That doesn't mean you can't change what your variable is pointing to. That is, y initially references some variable that you put into the array, but you can then take the variable named y, disconnect it from the object that's in the array now, and connect y (ie, make it reference) something different entirely without changing the object that now is referenced only by the array.

http://jsfiddle.net/rufwork/5cNQr/6/

var array = [];
var x = 4;
var y = {name: "test", type: "data", data: "2-27-2009"};

// 1.) pushes a copy
array.push(x);
x = 5;
document.write(array[0] + "<br>");    // alerts 4 because it's a copy

// 2.) pushes a reference
array.push(y);
y.name = "foo";

// 3.) Disconnects y and points it at a new object
y = {}; 
y.name = 'bar';
document.write(array[1].name + ' :: ' + y.name + "<br>");   
// alerts "foo :: bar" because y was a reference, but then 
// the reference was moved to a new object while the 
// reference in the array stayed the same (referencing the 
// original object)

// 4.) Uses y's original reference, stored in the array,
// to access the old object.
array[1].name = 'foobar';
document.write(array[1].name + "<br>");
// alerts "foobar" because you used the array to point to 
// the object that was initially in y.
share|improve this answer
Interesting point about using new to "disconnect" the object reference. – Travis J Feb 8 at 18:51

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.