Home > Web Front-end > JS Tutorial > javascript function

javascript function

高洛峰
Release: 2016-11-04 16:41:28
Original
1158 people have browsed it

array.sort(function(a, b){ return a -b ; } ) Sort the array array from small to large.

[11, 22, 586, 10, -58, 86].sort(function(a, b){ return a -b; } ) Return: [-58, 10, 11, 22, 86, 586]

The principle of sorting is to compare every two numbers, and then change the position of the elements in the array according to the positive or negative.
For example, in the first comparison, a is 11, b is 22, and then 11-22 is returned. The negative position remains unchanged.

array.sort(function(a, b){ return b - a ; } ) Sort the array in descending order.

[11, 22, 586, 10, -58, 86].sort(function(a, b){ return b - a ; } ) Returns: [586, 86, 22, 11, 10, -58]


Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
What are JavaScript hook functions?
From 1970-01-01 08:00:00
0
0
0
What is JavaScript garbage collection?
From 1970-01-01 08:00:00
0
0
0
c++ calls javascript
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template