Deprecated. This function has been replaced with the '[]' operator. It does the same as this expression:
a[index]
Returns:
The element of the array at the specified index. If the index is out of range (index < 0 || index >= a.length()), the null is returned.