Menu

gitpiper

pluck javascript Code Snippet in 2024

arrayobjectbeginner

Last Updated: 23 April 2024

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]

javascript snippet similar to pluck For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️