sort array values js code example
Example 1: sorting array from highest to lowest javascript
let numbers = [5, 13, 1, 44, 32, 15, 500]
let lowestToHighest = numbers.sort((a, b) => a - b);
let highestToLowest = numbers.sort((a, b) => b-a);
Example 2: how to sort an array by value in javascript
arr.sort(function(a, b){return a-b});
arr.sort((a, b) => a - b);
arr.sort(function(a, b){return b - a});
arr.sort((a, b) => b - a);
Example 3: sorting of arraray's number element in javascript
let numbers = [0, 1, 2, 3, 10, 20, 30];
numbers.sort((a, b) => a - b);
console.log(numbers);