Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created February 15, 2018 16:15
Show Gist options
  • Select an option

  • Save bmorelli25/051e9ea6fea7bdd91bfaa35cd9823988 to your computer and use it in GitHub Desktop.

Select an option

Save bmorelli25/051e9ea6fea7bdd91bfaa35cd9823988 to your computer and use it in GitHub Desktop.
Count Occurrences
const countOccurrences = (arr, val) => arr.reduce((a, v) => (v === val ? a + 1 : a + 0), 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment