Contact: aviboots(AT)netvision.net.il
39,955 questions
51,897 answers
573 users
const arr = [6, 7, 2, 8, 2, 5, 5, 8, 7, 8, 3, 2, 8, 8, 2, 8]; 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: 6 */