
Array Indexing
Arrays in JScript are sparse. That is, if you have an array
with three elements that are numbered 0, 1, and 2, you can create element 50
without worrying about elements 3 through 49. If the array has an automatic
length variable (see Intrinsic Objects for an
explanation of automatic monitoring of array length), the length variable is set
to 51, rather than to 4. You can certainly create arrays in which there are no
gaps...