How do I append to an array in Javascript?
|
|
|
Use the
|
|||||||||||||||||||||
|
|
If you're only appending a single variable, then your method works just fine. If you need to append another array, use concat(...) method of the array class:
Will spit out "1,2,3,4,5,6" Lots of great info here |
||||
|
|
|
Some quick benchmarking (each test = 500k appended elements and the results are averages of multiple runs) showed the following: Firefox 3.6 (Mac):
Safari 5.0 (Mac):
Google Chrome 6.0 (Mac):
I like the My benchmarking loops:
|
|||||||||||||||
|
|
I think it's worth mentioning that push can be called with multiple arguments, which will be appended to the array in order. For example:
As a result of this you can use push.apply to append an array to another array like so:
Annotated ES5 has more info on exactly what push and apply do. |
||||
|
|
|
If
E.g.
will log:
|
||||
|
Use
Reference: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/concat |
||||
|
|
|
Is b a variable? If not, it probably needs quotes. Also, lots of good info on JavaScript push() method here. |
|||||||||||||
|
|
If you know the highest index (such as stored in a variable "i") then you can do
However if you don't know then you can either use
as other answers suggested, or you can use
Note that the array is zero based so .length return the highest index plus one. Also note that you don't have to add in order and you can actually skip values, as in
In which case the values in between will have a value of undefined. It is therefore a good practice when looping through a JavaScript to verify that a value actually exists at that point. This can be done by something like the following:
if you are certain that you don't have any zeros in the array then you can just do:
Of course make sure in this case that you don't use as the condition myArray[i] (as some people over the internet suggest based on the end that as soon as i is greater then the highest index it will return undefined which evaluates to false) |
||||
|
|