For instance, if I do a[1000000]=1; will it use memory for 1000000 elements or just for this one?
|
|
In the ECMAScript standard (§15.4), the only special thing about array is that the
Other than that, an Array is just an Object, which means it can be treated as an associative array, although you shouldn't. Nowadays the JS engines should detect whether the array is dense or very sparse and switch between using a linear or associative array internally. In your case, the JS engine won't allocate a million elements. |
|||
|
|
Would 1,000,000 elements be created? No, arrays are sparse, but their index will be persistent. EDIT: Actually, their sparseness would be implementation-specific, but keeping them sparse in case of
Are JS arrays associative? JavaScript arrays are a subset of associative arrays (in that indices have to be integers, as shown in KennyTM's answer. JavaScript objects are fully associative:
|
|||||||||||||||||||||
|
|
You may use object literal as a kind of 'associative aray' in some cases:
But it has its limitations... There is no magic 'length' parameter and you will not have access to methods that every array has. |
||||
|
|
|
JS arrays are auto-growing. Setting a[100] to 1 on an empty array will populate the first 99 elements with "undefined". |
|||||||||
|