$arrange
$arrange
returns the given numbers in ascending or descending order.
Usage
Parameters
Field | Type | Description | Required |
---|---|---|---|
order | string | asc (ascending), or desc (descending): the order in which the numbers will be sorted in. | true |
separator | string | The separator which separates the numbers. | true |
…numbers | number | The numbers to sort. | true |
Example(s)
This will sort the following numbers: (returns: 1, 2, 3, 4, 5, 6)
)