Built-In Object Type: JavaArray

Inherits All, JavaObject
(MORE DESCRIPTION TO COME.)
Methods:
NameArgumentsDescription
lastIndex
  Returns the index of the last element in this one-dimensional array, which is size - 1.
reverse
  Reverses all the elements in this one-dimensional array and returns self.
size
length
  Returns the dimension of this one-dimensional array.
sort
comparatorFunction
Sorts this array locally and returns self. If comparatorFunction is not specified, use the "natural" order of the elements.
subarray
startIndex
endIndex
Returns a sub-array of this, starting at startindex inclusive to endIndex exclusive. If endIndex is not specified or beyond range, the end of array is used.