Skip to content

Instantly share code, notes, and snippets.

@h2ospace
Created March 14, 2013 19:28
Show Gist options
  • Save h2ospace/5164396 to your computer and use it in GitHub Desktop.
Save h2ospace/5164396 to your computer and use it in GitHub Desktop.
underscore: find, filter
(function() {
var a = [2, 5, 8, 42, 12];
var x;
// x = _.find(a, function(num) {
// return num > 5;
// });
x = _.filter(a, function(num) {
return num > 5;
});
console.log(x);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment