...
Optionally, control whether the list is sorted in ascending or descending order.
Syntax
orderList([list
[,order]], 'ORDER')
Argument | Type | Description |
---|---|---|
list | Array | The list to be sorted |
order | String | 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])
...