Skip to content

Instantly share code, notes, and snippets.

@uurtech
Created November 24, 2019 13:11
Show Gist options
  • Save uurtech/8bafbf741b2da0c01048d145cc38037c to your computer and use it in GitHub Desktop.
Save uurtech/8bafbf741b2da0c01048d145cc38037c to your computer and use it in GitHub Desktop.
Array.prototype.cleaner = function(){
return this.filter(n => n)
}
var arr = ["asd","","aa"];
console.log(arr.cleaner());
//"asd","aa"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment