Last active
September 1, 2018 01:50
-
-
Save macghriogair/277eb09dc39bc6e70291aadb2b02921c to your computer and use it in GitHub Desktop.
[Array map filter boolean] #array #filter #boolean
This file contains hidden or 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
myArray | |
.map(item => { | |
// ... | |
}) | |
// Get rid of bad values | |
.filter(Boolean); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment