Returns a new list with the elements in the provided list in order. The sort order is determined by a custom comparator function.
The function implements the merge sort algorithm, with O(n log n) time complexity and O(n) space complexity.
sort()
attempts to replicate the specified behaviour of the
Array.prototype.sort()
method (although bear in mind that Array.prototype.sort()
is not stable
in every environment).
A new sorted list.
Returns a new list with the elements in the provided list in order. The default sort order is ascending, built upon converting the elements into strings.
The function implements the merge sort algorithm, with O(n log n) time complexity and O(n) space complexity.
sort()
attempts to replicate the specified behaviour of theArray.prototype.sort()
method (although bear in mind thatArray.prototype.sort()
is not stable in every environment).