up vote 130 down vote favorite
8
share [g+] share [fb]

How do I append to an array in Javascript?

link|improve this question
feedback

6 Answers

up vote 113 down vote accepted
var arr = new Array(3);
arr[0] = "Hi";
arr[1] = "Hello";
arr[2] = "Bonjour";
arr.push("Hola");
for (var i = 0; i < arr.length; i++) {
    alert(arr[i]);
};
link|improve this answer
1  
100 up :-) cheers – Hameed Jan 7 at 6:34
feedback

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

link|improve this answer
feedback

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;
    }
}
link|improve this answer
feedback

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(a);

will log:

['a', 'b', 'c', 'd']
link|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
feedback

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

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

link|improve this answer
13  
Please don't recommend w3schols. It is not a reliable source — see w3fools. – porneL Jan 14 '11 at 17:37
2  
At least they spell correctly though... ;-) – monojohnny Apr 14 '11 at 20:28
3  
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
feedback

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: http://www.w3schools.com/jsref/jsref_concat_array.asp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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