Skip to content

Instantly share code, notes, and snippets.

@dhunmoon
Created March 23, 2017 11:00
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 dhunmoon/cad98ce80c4a49d0df7681f8b1e86738 to your computer and use it in GitHub Desktop.
Save dhunmoon/cad98ce80c4a49d0df7681f8b1e86738 to your computer and use it in GitHub Desktop.
JS:JSON Data Filter
$([
{"name":"Lenovo Thinkpad 41A4298","website":"google222"},
{"name":"Lenovo Thinkpad 41A2222","website":"google"}
])
.filter(function (i,n){
return n.website==='google';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment