Skip to content

Instantly share code, notes, and snippets.

@wiyoe
Last active January 29, 2018 15:04
Show Gist options
  • Select an option

  • Save wiyoe/0a4e1425ded655be30e5a60642a9beeb to your computer and use it in GitHub Desktop.

Select an option

Save wiyoe/0a4e1425ded655be30e5a60642a9beeb to your computer and use it in GitHub Desktop.
Lodash Pick Key(Property)
var itemList = [
{id: 5, name: "sample 5", color: "red"},
{id: 6, name: "sample 6", color: "blue"},
];
itemList = _.map(itemList, function (item) { // Pick
return _.pick(item, ['id', 'name']);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment