Last active
January 29, 2018 15:04
-
-
Save wiyoe/0a4e1425ded655be30e5a60642a9beeb to your computer and use it in GitHub Desktop.
Lodash Pick Key(Property)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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