Get In List Block
Last updated
These all apply to the get and remove and remove options aswell.

The get in list block returns the item in the list with the specified index.

The get in list from end block returns the item in the list with the specified index from the end.

The get first in list block returns the first item in the list.

The get last in list block returns the last item in the list.
Last updated
var list;
list[index];var list;
list.slice(-1)[index];var list;
list[0];var list;
list.slice(-1)[0];