Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 22, 2014 17:29
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 devdays/c4e9e2e8c95664d1cde6 to your computer and use it in GitHub Desktop.
Save devdays/c4e9e2e8c95664d1cde6 to your computer and use it in GitHub Desktop.
jQuery Example Grep with multiple tests
// demonstrate how Grep can have multiple criteria
var expensiveToys = $.grep(myData.products, function (element, index) {
return element.category == "Toy" && element.price > 9;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment