const CountOccurences = (arr, value) => arr.filter(v => v === value).length; module.exports = { CountOccurences };