Contact: aviboots(AT)netvision.net.il
41,213 questions
53,714 answers
573 users
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] */