Skip to content

Instantly share code, notes, and snippets.

@moonformeli
Last active November 9, 2019 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moonformeli/70a79d8985cbdd8aa691188aa54d02c2 to your computer and use it in GitHub Desktop.
Save moonformeli/70a79d8985cbdd8aa691188aa54d02c2 to your computer and use it in GitHub Desktop.
function removeZero(array) {
return array.filter(d => d != 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment