const countOccurrences = (arr, val) => arr.reduce((a, v) => (v === val ? a + 1 : a), 0); module.exports = countOccurrences;