Example 1: sorting array from highest to lowest javascript
// Sort an array of numbers
let numbers = [5, 13, 1, 44, 32, 15, 500]
// Lowest to highest
let lowestToHighest = numbers.sort((a, b) => a - b);
//Output: [1,5,13,15,32,44,500]
//Highest to lowest
let highestToLowest = numbers.sort((a, b) => b-a);
//Output: [500,44,32,15,13,5,1]
Example 2: js sort numbers descending order
// Sort Numbers in Descending Order
function sortDescending(num) {
return Number(num.toString().split('').sort((a, b) => b - a).join(''));
//or: return parseInt(num.toString().split('').sort().reverse().join(''));
}
console.log(sortDescending(123)); // 321
console.log(sortDescending(1254859723)); // 9875543221
Example 3: javascript sort
var names = ["Peter", "Emma", "Jack", "Mia", "Eric"];
names.sort(); // ["Emma", "Eric", "Jack", "Mia", "Peter"]
var objs = [
{name: "Peter", age: 35},
{name: "Emma", age: 21},
{name: "Jack", age: 53}
];
objs.sort(function(a, b) {
return a.age - b.age;
}); // Sort by age (lowest first)
Example 4: javascript ascending and descending
// ascending and discending for number
const arr1 = [21, 2100, 2, 35000];
const arr2 = [21, 2100, 2, 35000];
let ascN = arr1.sort((f, s) => f - s);
let dscN = arr2.sort((f, s) => s - f);
// ascending and discending for string
const arr3 = ['21', '2100', '2', '35000'];
const arr4 = ['21', '2100', '2', '35000'];
let ascS = arr3.sort((f, s) => f.length - s.length);
let dscS = arr4.sort((f, s) => s.length - f.length);
Example 5: javascript sort numbers
var numArray = [140000, 104, 99];
numArray.sort(function(a, b) {
return a - b;
});
// Array(3) [ 99, 104, 140000 ]
Example 6: javascript sort numbers descending
var numArray = [140000, 32, 12, 63323, 104, 99];
numArray.sort(function(a, b) {
return b - a;
});
// Array(6) [ 140000, 63323, 104, 99, 32, 12 ]