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

1 Answer

0 votes
const arr = [6, 7, 2, 9, 2, 5, 5, 2, 7, 8, 3, 2, 2, 2, 2];

const min = Math.min(...arr);
 
let frequency = 0;
 
for (let i = 0 ; i < arr.length ; i++) {
    if (arr[i] == min) {
        frequency++;
    }
}
 
console.log(frequency)
 
 
 
 
/*
run:
 
7
 
*/

 



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

Related questions

...