SORT
Returns the sorted values within an array
Parameters
values
Array (required) - The values to sort
callback
function (optional) - A transform function to use when sorting objects
Returns
Array
Examples
SORT([1, 2, 3, 3, 1])
// returns [1,1,2,3,3]
SORT(['a', 'c', 'b', 'a', 'b'])
// returns ["a","a","b","b","c"]
Updated about 1 year ago