Skip to content

Instantly share code, notes, and snippets.

@hayesch19
Created August 14, 2019 18:07
Show Gist options
  • Save hayesch19/45a24d67f94a0f3ecd6d599c445034d0 to your computer and use it in GitHub Desktop.
Save hayesch19/45a24d67f94a0f3ecd6d599c445034d0 to your computer and use it in GitHub Desktop.
Filter out the geese - Codewar
function gooseFilter (birds) {
let geese = ["African", "Roman Tufted", "Toulouse", "Pilgrim", "Steinbacher"];
let gooseFilter = birds.filter(function(birds) {
return geese.indexOf(birds) === -1
})
return gooseFilter
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment