Remove from List
Remove from List
Section titled “Remove from List”Type: list-remove-at · Package: Collections Activities v1.0.0
Removes the element that is at a specific position in the list. The indices start at 0.
How it works
Section titled “How it works”Removes the element at position index from list. The elements that were after are moved one position.
Required parameters
Section titled “Required parameters”| Parameter | Editor | Description |
|---|---|---|
list | expression | The list. |
index | expression | Index of the element to delete (base 0). |
Example
Section titled “Example”Remove from List list = = nombres index = 0 // elimina el primeroRelated activities
Section titled “Related activities”- Clear List — clear the entire list.
- Add to List — add items.