Rename js snippets

This commit is contained in:
Angelos Chalaris
2023-05-19 20:23:47 +03:00
parent 82a614e42e
commit 9d032ce05e
305 changed files with 70 additions and 70 deletions

View File

@ -0,0 +1,26 @@
---
title: Pluck values from array of objects
type: snippet
language: javascript
tags: [array,object]
cover: birds
dateModified: 2020-10-22T20:24:04+03:00
---
Converts an 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]
```