Returns a value from an array
summary (oneliner)
Example: If you have an array [100, 200, 300]
setting the Index
to 1
will return 200
. Please note that the first index is 0
, not 1
!
doc
issues
example patch id
youtube ids (comma seperated)
caniuse query
collections
Inputs
array (Array)
The array-data, e.g. [100, 200, 300]
index (integer /Number)
The index of the array you want to get, 0
is the first element
Outputs
value (Number)
The value of the array at position Index