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.
|
|
OK. How do I append to an array in Javascript? Update : actually
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. |
|||
|
|
|
|
|
|||
|
|
|
|
Is b a variable? If not, it probably needs quotes. Also, lots of good info on JavaScript push() method here. |
||
|
|
|
|
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 |
||
|
|
|
|
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:
Will spit out "1,2,3,4,5,6" Lots of great info here |
|||
|
|