Skip to content

Instantly share code, notes, and snippets.

@kepta
Created November 19, 2017 08:05
Show Gist options
  • Save kepta/1fb3b45f3517ddbbb4e56591299b10d8 to your computer and use it in GitHub Desktop.
Save kepta/1fb3b45f3517ddbbb4e56591299b10d8 to your computer and use it in GitHub Desktop.
function filterEvil(array, evil = 'darth vader') {
return array.filter(item => item !== evil);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment