Javascript Sorting Arrays: W3Schools
Javascript Sorting Arrays: W3Schools
com
Sorting an Array
The sort() method sorts an array alphabetically:
Example
Try it Yourself »
Reversing an Array
The reverse() method reverses the elements in an array.
Try it Yourself »
Numeric Sort
By default, the sort() function sorts values as strings.
However, if numbers are sorted as strings, "25" is bigger than "100", because "2" is bigger
than "1".
Because of this, the sort() method will produce incorrect result when sorting numbers.
Example
Try it Yourself »
Example
The compare function should return a negative, zero, or positive value, depending on the
arguments:
function(a, b){return a - b}
When the sort() function compares two values, it sends the values to the compare
function, and sorts the values according to the returned (negative, zero, positive) value.
If the result is 0 no changes are done with the sort order of the two values.
Example:
The compare function compares all the values in the array, two values at a time (a, b).
When comparing 40 and 100, the sort() method calls the compare function(40, 100).
The function calculates 40 - 100 (a - b), and since the result is negative (-60), the sort
function will sort 40 as a value lower than 100.
You can use this code snippet to experiment with numerically and alphabetically sorting:
<script>
var points = [40, 100, 1, 5, 25, 10];
document.getElementById("demo").innerHTML = points;
function myFunction1() {
points.sort();
document.getElementById("demo").innerHTML = points;
}
function myFunction2() {
points.sort(function(a, b){return a - b});
document.getElementById("demo").innerHTML = points;
}
</script>
Try it Yourself »
Example
Try it Yourself »
The most popular correct method, is called the Fisher Yates shuffle, and was introduced in
data science as early as 1938!
In JavaScript the method can be translated to this:
Example
Try it Yourself »
However, after you have sorted an array, you can use the index to obtain the highest and
lowest values.
Sorting ascending:
Example
Try it Yourself »
Sorting descending:
Example
Try it Yourself »
Sorting a whole array is a very inefficient method if you only want to find the highest (or
lowest) value.
Example
function myArrayMax(arr) {
return Math.max.apply(null, arr);
}
Try it Yourself »
function myArrayMin(arr) {
return Math.min.apply(null, arr);
}
Try it Yourself »
This function loops through an array comparing each value with the highest value found:
function myArrayMax(arr) {
var len = arr.length;
var max = -Infinity;
while (len--) {
if (arr[len] > max) {
max = arr[len];
}
}
return max;
}
Try it Yourself »
This function loops through an array comparing each value with the lowest value found:
Try it Yourself »
Example
var cars = [
{type:"Volvo", year:2016},
{type:"Saab", year:2001},
{type:"BMW", year:2010}
];
Even if objects have properties of different data types, the sort() method can be used
to sort the array.
Example
Example
cars.sort(function(a, b){
var x = a.type.toLowerCase();
var y = b.type.toLowerCase();
if (x < y) {return -1;}
if (x > y) {return 1;}
return 0;
});
Try it Yourself »
Exercise:
Use the correct Array method to sort the fruits array alphabetically.
Submit Answer »
COLOR PICKER
HOW TO
Tabs
Dropdowns
Accordions
Side Navigation
Top Navigation
Modal Boxes
Progress Bars
Parallax
Login Form
HTML Includes
Google Maps
Range Sliders
Tooltips
Slideshow
Filter List
Sort List
SHARE
CERTIFICATES
HTML
CSS
JavaScript
SQL
Python
PHP
jQuery
Bootstrap
XML
Read More »
REPORT ERROR
PRINT PAGE
FORUM
ABOUT
Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
jQuery Tutorial
Java Tutorial
C++ Tutorial
Top References
HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
jQuery Reference
Java Reference
Angular Reference
Top Examples
HTML Examples
CSS Examples
JavaScript Examples
How To Examples
SQL Examples
Python Examples
W3.CSS Examples
Bootstrap Examples
PHP Examples
jQuery Examples
Java Examples
XML Examples
Web Certificates
HTML Certificate
CSS Certificate
JavaScript Certificate
SQL Certificate
Python Certificate
jQuery Certificate
PHP Certificate
Bootstrap Certificate
XML Certificate
Get Certified »
W3Schools is optimized for learning, testing, and training. Examples might be simplified to improve reading and
basic understanding. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot
warrant full correctness of all content. While using this site, you agree to have read and accepted our terms of
use, cookie and privacy policy. Copyright 1999-2020 by Refsnes Data. All Rights Reserved.
Powered by W3.CSS.