Skip to content

Instantly share code, notes, and snippets.

@0xtelmo
Created April 20, 2020 23:00
Show Gist options
  • Save 0xtelmo/6c78f795c3c8393aa9d3e88a93a6a025 to your computer and use it in GitHub Desktop.
Save 0xtelmo/6c78f795c3c8393aa9d3e88a93a6a025 to your computer and use it in GitHub Desktop.
Get rid of falsy values
const arr = [1, 2, false, 4, undefined, null, 1];
arr.filter(Boolean); // [1, 2, 4, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment