As a side result of testing some code I wrote a small function to compare the speed of using the array.push method vs direct addressing (array[n] = value). To my surprise the push method often showed to be faster especially in Firefox and sometimes in Chrome. Just out of curiosity: anyone has an explanation for it? You can find the test @this page (click 'Array methods comparison')
|
|
All sorts of factors come into play, most JS implementations use a flat array that converts to sparse storage if it becomes necessary later on. Basically the decision to become sparse is a heuristic based on what elements are being set, and how much space would be wasted in order to remain flat. In your case you are setting the last element first, which means the JS engine will see an array that needs to have a length of You should add an additional test in which you fill the array from index 0 to index n-1 -- it should be much, much faster. In response to @Christoph and out of a desire to procrastinate, here's a description of how arrays are (generally) implemented in JS -- specifics vary from JS engine to JS engine but the general principle is the same. All JS
This Object type handles all the standard property access logic, the prototype chain, etc. Then the Array implementation becomes
Now when you create an Array in JS the engine creates something akin to the above data structure. When you insert an object into the Array instance the Array's put method checks to see if the property name is an integer between 0 and 2^32-1 (or possibly 2^31-1, i forget exactly). If it is not, then the put method is forwarded to the base Object implementation, and the standard [[Put]] logic is done. Otherwise the value is placed into the Array's own storage, if the data is sufficiently compact then the engine will use the flat array storage, in which case insertion (and retrieval) is just a standard array indexing operation, otherwise the engine will convert the array to sparse storage, and put/get use a map to get from propertyName to value location. I'm honestly not sure if any JS engine currently converts from sparse to flat storage after that conversion occurs. Anyhoo, that's a fairly high level overview of what happens and leaves out a number of the more icky details, but that's the general implementation pattern. The specifics of how the additional storage, and how put/get are dispatched differs from engine to engine -- but this is the clearest i can really describe the design/implementation. A minor addition point, while the ES spec refers to |
|||||||||||
|
|
When calling [[Put]] on an array object, the argument has to be converted to an unsigned integer first because all property names - including array indices - are strings. Then it has to be compared to the length property of the array in order to determine whether or not the length has to be increased. When pushing, no such conversion or comparison has to take place: Just use the current length as array index and increase it. Of course there are other things which will affect the runtime, eg calling As olliej pointed out: actual ECMAScript implementations will optimize the conversion away, ie for numeric property names, no conversion from string to uint is done but just a simple type check. The basic assumption should still hold, though its impact will be less than I originally assumed. |
|||||||||
|
|
These are the result I get with your test on Safari:
on FireFox:
on IE7:
According to your test the push method seems to be better on IE7 (huge difference), and since on the other browsers the difference is small, it seems to be the push method really the best way to add element to an array. But I created another simple test script to check what method is fast to append values to an array, the results really surprised me, using Array.length seems to be much faster compared to using Array.push, so I really don't know what to say or think anymore, I'm clueless. BTW: on my IE7 your script stops and browsers asks me if I want to let it go on (you know the typical IE message that says: "Stop runnign this script? ...") I would recoomend to reduce a little the loops. |
||||
|
|
|
I made testbeds (Push vs Assign: http://jsbin.com/epesed/16 , ReuseAssign: http://jsbin.com/itiyey/2): In this test the To get measurable times, the arr pushing was repeated 500 times. This process was timeouted 100 times to get more consistent results. The average times (ms) were (lower is better):
IE9 and IE10 are measured on Windows system and all other in Mac. So although Assign method used global var One remarkable note is that THE FASTEST WAY is to REUSE the same array and assign values to it. Then in all browsers the assign method is clearly fastest method! Especially Firefox19 the speedup is huge (Assign is 20.55x faster than Push and ReuseAssign is 107.46x than Push). CONCLUSION: Don't use push! Use assign instead. If possible, reuse the same array to get get huge speedup. Reusing is 1.09x - 5.49x faster than Pushing and in FF it's 107.46x faster than Push. FF19 note: I assume that FF19 has some bug related to pushing, because it is so slow compared to other browsers (17x - 74x slower). This really causes hangs in array pushing and is the most obvious bottleneck in FF, because use of arrays is so general in various libraries. IE9 note: In IE9 the first four measurements were 7x slower than the rest 96 measurements and in these first measurements the assignment is more faster than push. The difference between assing and push comes near each other when the same is repeated. Maybe this is due to that the browser determines that the same object is pushed again and again and caches this object. |
||||
|
|
|
Push adds it to the end, while array[n] has to go through the array to find the right spot. Probably depends on browser and its way to handle arrays. |
|||||||||
|