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