Contact: aviboots(AT)netvision.net.il
39,955 questions
51,897 answers
573 users
const arr = [6, 7, 3, 3, 3, 5, 5, 7, 7, 1, 3]; const max = Math.max(...arr); let frequency = 0; for (let i = 0 ; i < arr.length ; i++) { if (arr[i] == max) { frequency++; } } console.log(frequency) /* run: 3 */