How to use the sort() method in javascript
In JavaScript, the sort() method is used for array sorting. This method can sort array elements according to certain conditions. The syntax format is "arrayObject.sort(sortby)". If the sort() method is called without passing arguments, the elements in the array are sorted alphabetically.
The operating environment of this tutorial: Windows 7 system, JavaScript version 1.8.5, Dell G3 computer.
Use sort() to sort the array
The sort() method can sort the array elements according to certain conditions. If the sort() method is called without passing arguments, the elements in the array are sorted alphabetically.
var a = ["a","e","d","b","c"]; //定义数组 a.sort(); //按字母顺序对元素进行排序 console.log(a); //返回数组[a,b,c,d,e]
When using the sort() method, you should pay attention to the following issues.
1) The so-called alphabetical order is actually arranged according to the order of letters in the character encoding table. Each character has a unique number in the character table.
2) If the element is not a string, the sort() method attempts to convert the array elements into a string for comparison.
3) The sort() method will perform a bit-by-bit comparison based on element values, rather than sorting based on the number of strings.
var a = ["aba","baa","aab"]; 定义数组 a.sort(); //按字母顺序对元素进行排序 console.log(a); //返回数组[aab,aba,baa]
When sorting, first compare the first character of each element. If the first character is the same, compare the second character, and so on.
4) In any case, undefined elements in the array are sorted at the end.
5) The sort() method performs sorting operations on the original array and does not create a new array.
The sort() method not only sorts alphabetically, but can also perform operations according to other orders. In this case, the method must be provided with a function parameter that compares the two values and returns a number that describes the relative order of the two values. The sort function should have two parameters, a and b, and its return value is as follows.
If a is less than b according to the custom criteria, a should appear before b in the sorted array, then a value less than 0 is returned.
If a is equal to b, return 0.
If a is greater than b, return a value greater than 0.
Example 1
In the following example, the size of each element in the array will be compared according to the sorting function, and sorted from small to large Sorting is performed sequentially.
function f(a,b) { //排序函数 return (a - b); //返回比较参数 } var a = [3,1,2,4,5,7,6,8,0,9]; //定义数组 a.sort(f); //根据数字大小由小到大进行排序 console.log(a); //返回数组[0,1,2,3,4,5,6,4,7,8,9]
If executed in order from large to small, just invert the return value. The code is as follows:
function f(a,b) { //排序函数 return -(a - b); //取反并返回比较参数 } var a = [3,1,2,4,5,7,6,8,0,9]; //定义数组 a.sort(f); //根据数字大小由小到大进行排序 console.log(a); //返回数组[9,8,7,6,5,4,3,2,1,0]
Example 2
Arrange the array according to the odd and even properties.
sort() is more flexible in usage, mainly for function sorting and comparison. For example, if you sort an array according to odd and even numbers, you only need to determine whether the two parameters in the sequence function are odd and even numbers, and determine the sort order.
function f(a, b) { //排序函数 var a = a % 2; //获取参数a的奇偶性 var b = b % 2; //获取参数b的奇偶性 if (a == 0) return 1; //如果参数a为偶数,则排在左边 if (b == 0) return -1; //如果参数b为偶数,则排在右边 } var a = [3,1,2,4,5,7,6,8,0,9]; //定义数组 a.sort(f); //根据数字大小由大到小进行排序 console.log(a); //返回数组[3,1,5,7,9,0,8,6,4,2]
sort() method passes each element value to the sorting function when calling the sorting function. If the element value is an even number, its position will be kept unchanged; if the element value is an odd number, the parameter a will be exchanged. and the display order of b, thereby performing odd-even sorting of all elements in the array. If you want even numbers to be sorted first and odd numbers to be sorted behind, you only need to get the return value. The sorting function is as follows.
function f(a, b) { var a = a % 2; var b = b % 2; if (a == 0) return -1; if (b == 0) return 1; }
Example 3
Sort strings case-insensitively.
Under normal circumstances, sorting strings is case-sensitive, because the order of each uppercase letter and lowercase letter in the character encoding table is different, and uppercase letters are larger than lowercase letters.
var a = ["aB", "Ab", "Ba", "bA"]; //定义数组 a.sort(); //默认方法排序 console.log(a); //返回数组["Ab", "Ba", "aB", "bA"]
Capital letters are always arranged on the left. If you want lowercase letters to always be arranged on the left, you can design:
function f(a ,b) { return (a < b); } var a = ["aB", "Ab", "Ba", "bA"]; //定义数组 a.sort(); //默认方法排序 console.log(a); //返回数组["Ab", "Ba", "aB", "bA"]
When comparing the sizes of letters, JavaScript is based on the character encoding size. Determined, when it is true, it returns 1; when it is false, it returns -1.
If you do not want to be case-sensitive, and uppercase letters and lowercase letters are arranged in the same order, you can design:
function f(a, b) { var a = a.toLowerCase; var b = b.toLowerCase; if (a < b) { return 1; } else { return -1; } } var a = ["aB", "Ab", "Ba", "bA"]; //定义数组 a.sort(); //默认方法排序 console.log(a); //返回数组["aB", "Ab", "Ba", "bA"]
If you want to adjust the sorting order, just set the return value to be inverted.
Example 4
Display floating point numbers and integers separately.
function f(a, b) { //排序函数 if (a > Math.floor(a)) return 1; //如果a是浮点数,则调换位置 if (b > Math.floor(b)) return -1; //如果b是浮点数,则调换位置 } var a = [3.5555, 1.23456, 3, 2.11111, 5, 7, 3]; //定义数组 a.sort(f); //进行筛选 console.log(a); //返回数组[3,5,7,3,2.11111,1.23456,3.55555]
If you want to adjust the sort order, just set the return value to be inverted.
[Related recommendations: javascript learning tutorial]
The above is the detailed content of How to use the sort() method in javascript. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data
