Data / Lists
data/list_get
List Get
Returns the element at a given index in a list.
Note: Indices are 0-based. Out-of-range indices return null.
Inputs
| Name | Type | Optional | Description |
|---|---|---|---|
list |
list | The list. | |
index |
number | 0-based index. |
Outputs
| Name | Type | Description |
|---|---|---|
value |
any | The element at the given index, or null if out of range. |