vote up 7 vote down star

OK.

How do I append to an array in Javascript?

Update : actually

a.push(b)

does work. Realize that my previous problem was b not having a value.

Ok, I answered myself, but might as well leave this here on SO to help other newbies.

flag

4 Answers

vote up 9 vote down check
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|flag
vote up 0 vote down

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

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

link|flag
vote up -1 vote down

Presuming a is an array, I would think in this day and age a.push(b) would work, though the following alternative should always work, presuming again that a is an array:

a[a.length-1]=b

link|flag
vote up 3 vote down

If you're only appending a single variable, than 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|flag

Your Answer

Get an OpenID
or

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