|
  
Lists are Not Sparse
In JavaScript, lists are sparse. That is, you can assign a
value to the 100th element in the list without the first 99 even
existing. In DScript, you can assign a value to the 100th element
only if the list contains at least 100 elements.
|