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')
|
5
|
|||||||
|
|
|
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 |
||||||||||
|
|
|
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. |
||||||
|
|
|
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. |
||||||||
|
