Question
The length of an array is 1 more than its last index, why?
It is not supposed that if the length of an array is, eg,
var myArray:int = new Array();
myArray = 10;
if the setted legth(myArray = 10) is ten, why is the length one more than its last index, ie, 11.
?
