How to sort a numeric array in descending order with Node.js

1 Answer

0 votes
let arr = [4, 36, 8, 2, 11, 9, 7]; 
       
arr.sort(function(a, b){return b - a}); 
   
console.log(arr);
 
 
/*
run:
 
[
  36, 11, 9, 8,
   7,  4, 2
]
 
*/

 



answered Feb 26, 2025 by avibootz

Related questions

...