Data / Lists
data/list_remove
List Remove
Removes an element from a list by index or by value.
Inputs
| Name | Type | Optional | Description |
|---|---|---|---|
list |
list | The source list. | |
indexValue |
any | ✓ | Index (number) or value to remove. |
Outputs
| Name | Type | Description |
|---|---|---|
list |
list | Modified list (a copy with the element removed). |
removed |
any | The element that was removed, or null if not found. |
Properties
| Key | Type | Default | Description |
|---|---|---|---|
mode |
select | "BY_INDEX" |
Mode |
index |
number | 0 |
Index (fallback) |