Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
jQuery Filter Example
var games = $(myData.products).filter(function (index) {
return myData.products[index].category == "Game";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment