REVERSE reverses the elements in a list.
REVERSE
REVERSE(['first', 'second', 'third'])
This will return ['third', 'second', 'first'].
['third', 'second', 'first']
Last updated 4 years ago
Was this helpful?