Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omarkdev/9886ccad1d5f020264cb73b2a9fb2744 to your computer and use it in GitHub Desktop.
Save omarkdev/9886ccad1d5f020264cb73b2a9fb2744 to your computer and use it in GitHub Desktop.
const arr = ['amazing', "", null, 666, undefined, 0, false, NaN];
console.log(arr.filter(Boolean));
// [ 'amazing', 666 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment