How to use a custom comparison function in JavaScript
The default comparison function (lexicographical order)
The Array.prototype.sort()
method sorts the elements of an array and returns the sorted array. By default (without any arguments), it sorts in ascending order, by converting each element into a string, and comparing the UTF-16 code of each character. This is sometimes referred to as lexicographic ordering.
13
is sorted before 2
, 4
, 6
, and 8
, because its first character (1)
, has a smaller UTF-16 code than the others.
How to use a custom comparison function
The sort
method takes an optional comparison function that lets you sort elements using custom logic.
This function must return an integer where each integer determines how the two elements being compared are to be sorted.
compareFunction(a, b) return value | sort order |
---|---|
< 0 | sort a before b |
> 0 | sort a after b |
=== 0 | keep original order of a and b |
Here’s an example comparison function that sorts an array by placing the shortest words as the start (repl):
What about other values like null, undefined, false, etc?
undefined
elements are sorted to the end of the array:
Everything else is converted to a string (seemingly using the String()
constructor. For example:
In each case, you get the same result as if you passed the string equivalent (e.g., "null"
instead of null
or "false"
instead of false
).
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment