Merge pull request #1666 from thomasmichaelwallace/pluck

feat: implementation of underscore pluck function
This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-21 17:09:09 +03:00
committed by GitHub

22
snippets/pluck.md Normal file
View File

@ -0,0 +1,22 @@
---
title: pluck
tags: array,object,beginner
---
Converts and array of objects into an array of values corresponding to the specified `key`.
- Use `Array.prototype.map()` to map the array of objects to the value of `key` for each one.
```js
const pluck = (arr, key) => arr.map(i => i[key]);
```
```js
const simpsons = [
{ name: 'lisa', age: 8 },
{ name: 'homer', age: 36 },
{ name: 'marge', age: 34 },
{ name: 'bart', age: 10 },
];
pluck(simpsons, 'age'); // [8, 36, 34, 10]
```