How to sort a numeric array in descending order with TypeScript

1 Answer

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

 



answered Feb 26, 2025 by avibootz
...