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

How do I append to an array in Javascript?

share|improve this question

8 Answers

up vote 568 down vote accepted

Use the push() function to append to an array:

// initialize array
var arr = new Array(3); // Optional count -- it controls the array's size
arr[0] = "Hi";
arr[1] = "Hello";
arr[2] = "Bonjour";

// append new value to the array
arr.push("Hola");

// display all values
for (var i = 0; i < arr.length; i++) {
    alert(arr[i]);
};
share|improve this answer
7  
100 up :-) cheers – chhameed Jan 7 '12 at 6:34
6  
+150 :D Thanks! – CoffeeRain Apr 6 '12 at 18:52
11  
This is probably a good demonstration, but a few words of explanation might be nice. I guess the answer suggested here is: use the push() function. – nobar Jul 16 '12 at 0:21
4  
My moment of blindness: arr.push["Hola"] (accidentally using square brackets) neither appends nor gives an error. – user645715 Aug 23 '12 at 21:34
2  
arr.push["Hola"] is equivalent to arr.push.Hola. – Cameron Martin Apr 6 at 14:05
show 2 more comments

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:

var ar1 = [1, 2, 3];
var ar2 = [4, 5, 6];

var ar3 = ar1.concat(ar2);

alert(ar3);

Will spit out "1,2,3,4,5,6"

Lots of great info here

share|improve this answer

Some quick benchmarking (each test = 500k appended elements and the results are averages of multiple runs) showed the following:

Firefox 3.6 (Mac):

  • Small arrays: arr[arr.length] = b is faster (300ms vs. 800ms)
  • Large arrays: arr.push(b) is faster (500ms vs. 900ms)

Safari 5.0 (Mac):

  • Small arrays: arr[arr.length] = b is faster (90ms vs. 115ms)
  • Large arrays: arr[arr.length] = b is faster (160ms vs. 185ms)

Google Chrome 6.0 (Mac):

  • Small arrays: No significant difference (and Chrome is FAST! Only ~38ms !!)
  • Large arrays: No significant difference (160ms)

I like the arr.push() syntax better, but I think for my use I'd be better off with the arr[arr.length] version, at least in raw speed. I'd love to see the results of an IE run though.


My benchmarking loops:

function arrpush_small() {
    var arr1 = [];
    for (a=0;a<100;a++)
    {
        arr1 = [];
        for (i=0;i<5000;i++)
        {
            arr1.push('elem'+i);
        }
    }
}

function arrlen_small() {
    var arr2 = [];
    for (b=0;b<100;b++)
    {
        arr2 = [];
        for (j=0;j<5000;j++)
        {
            arr2[arr2.length] = 'elem'+j;
        }
    }
}


function arrpush_large() {
    var arr1 = [];
    for (i=0;i<500000;i++)
    {
        arr1.push('elem'+i);
    }
}

function arrlen_large() {
    var arr2 = [];
    for (j=0;j<500000;j++)
    {
        arr2[arr2.length] = 'elem'+j;
    }
}
share|improve this answer
3  
The question is if .length is a stored value or is calculated when being accessed, since if the latter one is true then it might be that using a simple variable (such as j) as the index value might be even faster – yo hal Aug 15 '12 at 18:55
+1 for the statics, How do you make those benchmark? – yozloy Aug 23 '12 at 6:23
6  
@yozloy: jsperf.com is your friend :) – Jens Roland Aug 25 '12 at 19:37
@Jens Roland could you link your test on jsperf.com? I'm very interested in stats for different browser\platform – HopeNick Apr 13 at 9:42
Would love to see concat() in the same test! – Justin Apr 30 at 0:10

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:

var arr = ['first'];
arr.push('second', 'third');
console.log(arr); // ['first', 'second', 'third']

As a result of this you can use push.apply to append an array to another array like so:

arr.push.apply(arr, ['forth', 'fifth']);
console.log(arr); // ['first', 'second', 'third', 'forth', 'fifth']

Annotated ES5 has more info on exactly what push and apply do.

share|improve this answer

If arr is an array, and val is the value you wish to add use:

arr.push(val);

E.g.

arr = ['a', 'b', 'c'];
arr.push('d');
console.log(arr);

will log:

['a', 'b', 'c', 'd']
share|improve this answer
Ummmm, your two examples are inconsistent, is it push or append? – Aranda Aug 5 '11 at 14:21
Whoops. It's .push(). .append() is python. I've edited my answer. Thanks for that. – rjmunro Aug 5 '11 at 16:15

Use concat:

a = [1, 2, 3];
b = [3, 4, 5];
a = a.concat(b);

a now contains all the elements, [1, 2, 3, 3, 4, 5].

Reference: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/concat

share|improve this answer

Is b a variable? If not, it probably needs quotes.

Also, lots of good info on JavaScript push() method here.

share|improve this answer
25  
Please don't recommend w3schols. It is not a reliable source — see w3fools. – porneL Jan 14 '11 at 17:37
7  
At least they spell correctly though... ;-) – monojohnny Apr 14 '11 at 20:28
7  
Actually my last comment was a bit of a cheap shot - and also the joke is on me since I just quickly looked over w3fools - and the site make some decent points about w3schools being inaccurate in places; having said that I've learnt many useful things from w3schools over the many years it has been available.... – monojohnny Apr 14 '11 at 20:32

If you know the highest index (such as stored in a variable "i") then you can do

myArray[i + 1] = someValue;

However if you don't know then you can either use

myArray.push(someValue);

as other answers suggested, or you can use

myArray[myArray.length] = someValue; 

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

myArray[myArray.length + 1000] = someValue;

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(myArray[i] === "undefined"){ continue; }

if you are certain that you don't have any zeros in the array then you can just do:

if(!myArray[i]){ continue; }

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)

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.