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