Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Excerpt
hiddentrue

orderList(list, order) Return a new list containing the contents of a supplied list, sorted.


Function: orderList()

Return a new list containing the contents of a supplied list, sorted.

...

ArgumentTypeDescription
listArrayThe list to be sorted
orderString

If this is 'ASC', sort in ascending order.

If this is 'DESC', sort in descending order.

If this parameter is omitted, sort in ascending order

Examples

orderList([1,4,3,2])

Returns [1,2,3,4].


orderList(['a','z','b'], 'DESC')

Returns ['z','b','a'].

See Also