What is the most efficient way to create an arbitrary length zero filled array in JavaScript?
|
1
|
|||
|
|
|
using object notation
zero filled? like...
filled with 'undefined'...
obj notation with zeros
As a side note, if you modify Array's prototype, both
and
will have those prototype modifications At any rate, I wouldn't be overly concerned with the efficiency or speed of this operation, there are plenty of other things that you will likely be doing that are far more wasteful and expensive than instanciating an array of arbitrary length containing zeros. |
|||
|
|
Note that |
||||||
|
|
|
Pre-allocate, then backward fill:
EDIT 2009/08/19: Matthew Crumley points out that counting down is markedly slower on Firefox than counting up, a result I can confirm -- it's the array part of it (looping down to zero is still faster than looping up to a limit in a var). Apparently adding the elements to the array in reverse order is a slow op on Firefox. In fact, the results vary quite a bit by JavaScript implementation, here's a quick and dirty test page (below) for browser implementations (very dirty, doesn't yield during tests, so provides minimal feedback and will run afoul of script time limits). I recommend refreshing between tests; FF (at least) slows down on repeated tests if you don't The fairly complicated version that uses Array#concat is faster than a straight init on FF as of somewhere between 1,000 and 2,000 element arrays. On Chrome's V8 engine, though, straight init wins out every time... Here's the test page:
|
||||||||||
|
|
|
usage in expressions: arr[i]*1; EDIT: if |
||||||||||||
|
|
|
I knew I had this proto'd somewhere :)
Edit: tests In response to Joshua and others methods I ran my own benchmarking, and I'm seeing completely different results to those reported. Here's what I tested:
Results:
So by my reckoning push is indeed slower generally but performs better with longer arrays in FF but worse in IE which just sucks in general (quel surprise). |
|||
|
|
|
I've tested all combinations of pre-allocating/not pre-allocating, counting up/down, and for/while loops in IE 6/7/8, Firefox 3.5, Chrome, and Opera. The functions below was consistently the fastest or extremely close in Firefox, Chrome, and IE8, and not much slower than the fastest in Opera and IE 6. It's also the simplest and clearest in my opinion. I've found several browsers where the while loop version is slightly faster, so I'm including it too for reference.
or
|
|||
|
|
|
My fastest function would be:
Using the native push and shift to add items to the array is much faster (about 10 times) than declaring the array scope and referencing each item to set it's value. fyi: I consistently get faster times with the first loop, which is counting down, when running this in firebug (firefox extension).
I'm interested to know what T.J. Crowder makes of that ? :-) |
||||||||
|
