How to sort an array of numbers in descending order with JavaScript

2 Answers

0 votes
let arr = [1000, 10, 100, 10000, 100000, 1];
 
arr.sort(function(a, b) {
  return b - a;
});
 
console.log(arr); 

  
/*
run:
  
[ 100000, 10000, 1000, 100, 10, 1 ]
  
*/

 



answered Jul 23, 2017 by avibootz
edited Apr 30, 2024 by avibootz
0 votes
let arr = [1000, 10, 100, 10000, 100000, 1];

arr = arr.sort((a, b) => b - a);
 
console.log(arr); 

  
/*
run:
  
[ 100000, 10000, 1000, 100, 10, 1 ]
  
*/

 



answered Apr 30, 2024 by avibootz
...