Skip to content

Instantly share code, notes, and snippets.

@kepta
Created November 19, 2017 07:39
Show Gist options
  • Save kepta/6e7a60ca2496a0ff19b0e1d894ce0bcb to your computer and use it in GitHub Desktop.
Save kepta/6e7a60ca2496a0ff19b0e1d894ce0bcb to your computer and use it in GitHub Desktop.
default_param_1
function filterEvil(array, evil) {
evil = 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