Files
30-seconds-of-code/snippets/pluck.md
Isabelle Viktoria Maciohsek 0f99557cd5 Update pluck.md
2020-10-21 17:08:45 +03:00

491 B

title, tags
title tags
pluck 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.
const pluck = (arr, key) => arr.map(i => i[key]);
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]