Created
March 4, 2020 21:17
-
-
Save omarkdev/9886ccad1d5f020264cb73b2a9fb2744 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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