Skip to content

Instantly share code, notes, and snippets.

@DingWeizhe
Created April 17, 2016 07:06
Show Gist options
  • Select an option

  • Save DingWeizhe/adea65054ea93d869b0839ea968a8c93 to your computer and use it in GitHub Desktop.

Select an option

Save DingWeizhe/adea65054ea93d869b0839ea968a8c93 to your computer and use it in GitHub Desktop.
var _res = [];
for (var i in res){
if (res[i].type == type){
_res.push(res[i]);
}
}
return _res;
=>
res.filter((item) => { return type == item.type; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment