Skip to content

Instantly share code, notes, and snippets.

@dasider41
Created September 4, 2019 00:12
Show Gist options
  • Save dasider41/cd12966d607aee28b2ee3db0cec1a652 to your computer and use it in GitHub Desktop.
Save dasider41/cd12966d607aee28b2ee3db0cec1a652 to your computer and use it in GitHub Desktop.
const arr = [
"apple",
[
"banana",
"strawberry",
"apple",
["banana", "strawberry", "apple", ["banana", "strawberry", "apple"]]
]
];
const countItems = (arr, item) =>
arr.flat(Infinity).filter(val => val === item).length;
console.log(countItems(arr, "apple") === 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment