Gets a list, without its first element.
listRest(list [, delimiters])
returns string
Name | Type | Required | Default | Description |
---|---|---|---|---|
list | string | Yes | ||
delimiters | string | No | , |
A very basic listRest example
listRest("one,two,three,four");
Nesting listRest shortens the list by one each time with the first element removed.
listRest(listRest("one,two,three,four"));
Nesting list functions lets you move through the list in pieces.
listFirst(listRest(listRest("one,two,three,four")));