Skip to content

Get List Item

Type: list-get  ·  Package: Collections Activities v1.0.0  ·  Output: object

Gets the element that is at a specific position in the list. Indices start at 0: the first element is index 0, the second 1, etc.

Reads the element at position index from the list list and saves it to outputVariable.

ParameterEditorDescription
listexpressionThe list.
indexexpressionIndex (base 0).
outputVariablenombre de variableVariable where to save the element.
Get List Item list = = nombres index = 0 outputVariable = primero
Log message = = "Primer nombre: " + primero