241 B
241 B
Count occurences of a value in array
Use filter() to create an array containing only the items with the specified value, count them using length.
var countOccurences = (arr, value) => arr.filter(v => v === value).length;