Skip to main content
Version: v0.19.0-alpha 🚧

ArrayElementAtIndex

Alias:ArrayElementAtIndex, FromArray, ElementAtIndex

Output:T

Gets the array element at a particular index. The first element has an index of 0.

ParameterTypeRequiredPositionSummary
Arrayarray<T>✔1The array to check.
Index
GetElement
int✔2The index to get the element at.

Examples​

SCL​

FromArray ['A', 'B', 'C'] GetElement: 1

Expected Output​

B