Skip to content

Home

Count occurrences

Counts the occurrences of a value in an array.

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

countOccurrences([1, 1, 2, 1, 2, 3], 1); // 3

More like this

Start typing a keyphrase to see matching snippets.