30秒学会 JavaScript 片段 · 2022年2月5日

30秒学会 JavaScript 片段 – Pluck values from array of objects

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.

代码实现

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]

翻译自:https://www.30secondsofcode.org/js/s/pluck-values-from-object-array