Data / Lists data/list_remove

List Remove

Removes an element from a list by index or by value.

Inputs

NameTypeOptionalDescription
list list The source list.
indexValue any Index (number) or value to remove.

Outputs

NameTypeDescription
list list Modified list (a copy with the element removed).
removed any The element that was removed, or null if not found.

Properties

KeyTypeDefaultDescription
mode select "BY_INDEX" Mode
index number 0 Index (fallback)