Home > Article > Web Front-end > Detailed explanation of Javascript array sorting_Basic knowledge
If you have been working with JavaScript for a while, you must know the array sorting function sort. Sort is a method in the array prototype, namely array.prototype.sort(), sort(compareFunction), where compareFunction is a comparison function. Let’s take a look at a description from Mozilla MDN:
If compareFunction is not supplied, elements are sorted by converting them to strings and comparing strings in lexicographic (“dictionary” or “telephone book,” not numerical) order. For example, “80″ comes before “9″ in lexicographic order, but in a numeric sort 9 comes before 80.
Look at some simple examples below:
// Output ["a", "b", "c"]
console.log(["c", "b", "a"].sort());
// Output [1, 2, "a", "b"]
console.log(["b", 2, "a", 1].sort());
As you can see from the above example, the default is to sort by alphabetical order in the dictionary.
Fortunately, sort accepts a custom comparison function, as in the following example:
After sorting, we have another question, how to control ascending and descending order?
The sorting rules of comparFunction are as follows:
1.If it returns a negative number, a will be sorted to a lower index in the array.
2.If it returns a positive number, a will be sorted to a higher index.
3.And if it returns 0 no sorting is necessary.
Let’s take a look at an excerpt from Mozilla MDN:
The behavior of the sort method changed between JavaScript 1.1 and JavaScript 1.2.To explain this description, let’s look at an example:
In JavaScript 1.1, on some platforms, the sort method does not work. This method works on all platforms for JavaScript 1.2.
In JavaScript 1.2, this method no longer converts undefined elements to null; instead it sorts them to the high end of the array. Please click here for details.
I hope this article will be helpful for you to learn and understand the sort() method. I hope you will criticize and correct any inappropriateness in the article.
Reference link: https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array/sort