/
arraySetElement
arraySetElement
Description
If elem is an element of the array type, returns a new array with the specified element on position index1. If index1 is greater than the array size, it will add empty elements on the missing positions.
Parameters
Return Type
Element of the array type
Example
watchers = setElement(watchers, 12, currentUser());
Sets the value currentUser for the 13 th element of the array watchers.
If array is not defined as an array, the function returns error.
If index is not number the function returns error.
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[12] = currentUser() to refer to the 13 th element in the watchers array.
See also
Related content
Array Values
Array Values
Read with this
arraySetElement
arraySetElement
More like this
arrayDeleteElementAt
arrayDeleteElementAt
Read with this
arraySetElement
arraySetElement
More like this
Predefined Structure Types
Predefined Structure Types
Read with this
arraySetElement
arraySetElement
More like this