Skip to content

Instantly share code, notes, and snippets.

@macghriogair
Last active September 1, 2018 01:50
Show Gist options
  • Save macghriogair/277eb09dc39bc6e70291aadb2b02921c to your computer and use it in GitHub Desktop.
Save macghriogair/277eb09dc39bc6e70291aadb2b02921c to your computer and use it in GitHub Desktop.
[Array map filter boolean] #array #filter #boolean
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