|
Returns the element at the specified index. |
Returns the element at the specified index.
|
Element of the array type.
for(number i = 0; i < size(watchers); i = i + 1){ print(getElement(watchers, i) + " is watching this issue."); } |
Prints all the elements of the array watchers.
|
Starting with version 2.5 we added the indexing operator. It will work on arrays, strings, dates and interval. You can simply write in your programs watchers[0] to refer to the first element in the watchers array. |