Skip to content

Instantly share code, notes, and snippets.

@lodestone
Created February 22, 2014 00:25
Show Gist options
  • Save lodestone/9146574 to your computer and use it in GitHub Desktop.
Save lodestone/9146574 to your computer and use it in GitHub Desktop.
Somewhat comparable compact function to match ruby's compact method.
Array.prototype.compact = function() { return this.filter(function(e) { return e; }); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment