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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It depends upon what you're pushing. Objects and arrays are pushed by reference. Built-in types like numbers are pushed as a copy.
Working demo of this code: http://jsfiddle.net/jfriend00/5cNQr/ |
|||
|
|
|
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, http://jsfiddle.net/rufwork/5cNQr/6/
|
||||
|
|

