How to get the frequency of largest array value in Node.js

1 Answer

0 votes
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
 
*/

 



answered Jul 30, 2022 by avibootz
edited Jul 30, 2022 by avibootz

Related questions

...