How do I append to an array in Javascript?
|
feedback
|
| |||||
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:
Will spit out "1,2,3,4,5,6" Lots of great info here | ||||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
If
E.g.
will log:
| |||||
feedback
|
|
Is b a variable? If not, it probably needs quotes. Also, lots of good info on JavaScript push() method here. | |||||||||||||
feedback
|
|
Use
Reference: http://www.w3schools.com/jsref/jsref_concat_array.asp | ||||
|
feedback
|