Skip to content

Instantly share code, notes, and snippets.

@jsjoeio
Created May 20, 2017 22:58
Show Gist options
  • Save jsjoeio/9bce5b2b19dc886a648cf9428d31195c to your computer and use it in GitHub Desktop.
Save jsjoeio/9bce5b2b19dc886a648cf9428d31195c to your computer and use it in GitHub Desktop.
function bouncer(arr) {
// Don't show a false ID to this bouncer.
return arr.filter(Boolean);
}
bouncer([7, "ate", "", false, 9]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment