Skip to content

Instantly share code, notes, and snippets.

@basekays
Created October 20, 2016 02:49
Show Gist options
  • Select an option

  • Save basekays/9475f25e1d5d4e0d4dba5e4a74282ba0 to your computer and use it in GitHub Desktop.

Select an option

Save basekays/9475f25e1d5d4e0d4dba5e4a74282ba0 to your computer and use it in GitHub Desktop.
var _ = {};
_.pluck = function (list, key) {
var result = [];
for (var i = 0; i<list.length; i++) {
if (list[i][key]) {
result.push(list[i][key]);
}
}
return result;
}
@amy-chiu

Copy link
Copy Markdown

!!! nice kay!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment