ArrayElementAtIndex
Alias:ArrayElementAtIndex, FromArray, ElementAtIndex
Output:T
Gets the array element at a particular index. The first element has an index of 0.
| Parameter | Type | Required | Position | Summary |
|---|---|---|---|---|
| Array | array<T> | ✔ | 1 | The array to check. |
| Index GetElement | int | ✔ | 2 | The index to get the element at. |
Examples​
SCL​
FromArray ['A', 'B', 'C'] GetElement: 1
Expected Output​
B