Files
dsabot/functions/CountOccurences.js
2021-04-10 19:17:18 +02:00

8 lines
193 B
JavaScript

const CountOccurences = (arr, value) => {
return arr.filter((v) => (v === value)).length;
};
module.exports = { CountOccurences };
//console.log(countOccurrences([1,2,3,4,3,2,3,3,2],2));