Skip to content

Instantly share code, notes, and snippets.

@brenofreire
Created February 21, 2020 01:48
Show Gist options
  • Save brenofreire/7365cb0c465b826bca350d64c1d4e67f to your computer and use it in GitHub Desktop.
Save brenofreire/7365cb0c465b826bca350d64c1d4e67f to your computer and use it in GitHub Desktop.
Conta quantos items são verdadeiros em um array
// O array filter do JS te ajuda muito quando você quer fazer uma seleção específica (filtro ;)
function countSheeps(arrayOfSheeps) {
return arrayOfSheeps.filter(Boolean).length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment