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

NameTypeOptionalDescription
list list The list.
index number 0-based index.

Outputs

NameTypeDescription
value any The element at the given index, or null if out of range.