At
Return an item at the specified position in a list, where the first item is in position 0.
Input
Field | Definition | Type | Required |
---|---|---|---|
list |
A list of items. |
List of Objects |
FALSE |
index |
Position of the specified item. In a list, items are always positioned as follows:
|
Number |
FALSE |
Output
Field | Definition | Type |
---|---|---|
item |
The returned item, based on the specified position in the list. Both the specified item and the list must be of the same type. |
Object |
Example
-
If list is ["one","two","three","four"] and index is 0, then item is "one".
-
If list is [1,2,3,4,5] and index is 2, then item is 3.