PrefaceIn daily code development, there are many operations related to array sorting. In JavaScript, you can call the sort method to quickly sort the array. Today, let’s learn about the sort method of arrays to avoid the tragic experience of stepping into pitfalls in the future. conceptThe sort method is used to sort the elements of an array. grammar
Parameter parsingcompareFunction (optional) A function used to specify a certain order of arrangement. This function takes two parameters:
If this function is omitted, the elements are sorted according to the Unicode positions of the characters in the converted string. Return Value The sorted array. Note that the array is sorted in-place and no copies are made. sort method source code DEFINE_METHOD( GlobalArray.prototype, sort(comparefn) { CHECK_OBJECT_COERCIBLE(this, "Array.prototype.sort"); if (!IS_UNDEFINED(comparefn) && !IS_CALLABLE(comparefn)) { throw %make_type_error(kBadSortComparisonFunction, comparefn); } var array = TO_OBJECT(this); var length = TO_LENGTH(array.length); return InnerArraySort(array, length, comparefn); } ); This step shows that the sort method calls the InnerArraySort method, and the parameters are the array, the array length, and the comparison function. Let's take a look at how the InnerArraySort method handles this. pitI still remember the first time I used array sorting: I found a sort method and used it immediately. The result was as follows: const arr = [49, 5, 14, 89, 71, 3, 10]; arr.sort(); // Output [10, 14, 3, 49, 5, 71, 89] The moment I saw the result, I was a little shocked. This is a bit unethical. Where is the agreed order? After confirming that there was nothing wrong with my machine, I quickly checked the documentation to see what it said: If compareFunction is not specified, then the elements are sorted according to the character-by-character Unicode positions of the converted strings. With this explanation, the sorting of the above array can be understood as follows: First, convert the numbers in the array into strings one by one and get ['49', '5', '14', '89', '71', '3', '10']. If we calculate according to the Unicode position of the first character:
If the codes of the first characters are the same, the codes of the second characters are compared. For example, 10 comes before 14 (the comparison result of 0 and 4). The logic seems to make sense, but this is not the result I want. It seems that I still have to rely on the comparison function compareFunction. Let's take a look at what this compareFunction is. usageThe basic use case is as follows: const arr = [49, 5, 14, 89, 71, 3, 10]; // General way to write arr.sort(function (a, b) { return a - b; // sort in ascending order }); // Arrow function arr.sort((a, b) => a - b); // Result [3, 5, 10, 14, 49, 71, 89] The above is the way to sort in ascending order. If you want to sort in descending order, just change return a - b; in the comparison function to return b - a;. Sorting an array of objects In addition to sorting numeric and character arrays, the sort() method can also be used to sort object arrays: var items = [ {name: 'Edward', value: 21}, {name: 'Sharpe', value: 37}, {name: 'And', value: 45}, {name: 'The', value: -12}, {name: 'Magnetic'}, {name: 'Zeros', value: 37} ]; // sort by value items.sort(function (a, b) { return (a.value - b.value) }); // sort by name items.sort(function (a, b) { var nameA = a.name.toUpperCase(); // ignore upper and lowercase var nameB = b.name.toUpperCase(); // ignore upper and lowercase if (nameA < nameB) { return -1; } if (nameA > nameB) { return 1; } // names must be equal return 0; }); Sorting non-ASCII characters When sorting strings containing non-ASCII characters (such as strings containing characters like e, é, è, a, ä, etc.). Some non-English language strings require the use of var items = ['reservé', 'premier', 'cliché', 'communiqué', 'café', 'adieu']; items.sort(function (a, b) { return a.localeCompare(b); }); // items is ['adieu', 'café', 'cliché', 'communiqué', 'premier', 'réservé'] Using mapping to improve sorting The compareFunction may need to map the elements multiple times to achieve sorting. Especially when the compareFunction is complex and there are many elements, some compareFunctions may cause high load. It would be a good idea to use a map to assist in sorting. The basic idea is to first take out the actual value of each element in the array, sort it, and then restore the array. // Array to be sorted var list = ['Delta', 'alpha', 'CHARLIE', 'bravo']; // Temporary storage for numbers and positions that need to be sorted var mapped = list.map(function(el, i) { return { index: i, value: el.toLowerCase() }; }) // Sort array by multiple values mapped.sort(function(a, b) { return +(a.value > b.value) || +(a.value === b.value) - 1; }); // Get the sorted result according to the index var result = mapped.map(function(el){ return list[el.index]; }); SummarizeThis concludes this article about the basic usage of the array sort() method in JavaScript. For more information on the usage of the JavaScript array sort() method, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: win10 docker-toolsbox tutorial on building a php development environment
>>: MySQL 8.0.15 installation and configuration method graphic tutorial under Windows
It is troublesome to install the db2 database dir...
I accidentally discovered a great artificial inte...
This article shares the specific code of js to im...
one. First of all, you have to package it in idea...
Table of contents in conclusion Practice Analysis...
1. Today, when I was making a page, I encountered ...
This article shows you how to use CSS to create a...
Find the running container id docker ps Find the ...
Preface: I'm currently learning Linux and .Ne...
I have been playing around with charts for a whil...
Implementation principle The main graphics are co...
This article shares the encapsulation code of Jav...
Nginx (engine x) is a high-performance HTTP and r...
Aggregate functions Acts on a set of data and ret...
I am a beginner in SQL and thought that the insta...