Skip to content

Instantly share code, notes, and snippets.

@seangibat
Created April 14, 2015 19:00
Show Gist options
  • Save seangibat/3b041ed7cab603e13c58 to your computer and use it in GitHub Desktop.
Save seangibat/3b041ed7cab603e13c58 to your computer and use it in GitHub Desktop.
javascript filter
var filter = function(collection, predicate){
var results = [];
each(collection, function(val){
if (predicate(val)) results.push(val);
});
return results;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment