I once used Lodash _.pluck...I loved pluck...
_.pluck
Realizing Lodash no longer supports pluck (as of Lodash 4.x), I\'m struggling to remember wha
pluck
Or try pure ES6 nonlodash method like this
const reducer = (array, object) => { array.push(object.a) return array } var objects = [{ 'a': 1 }, { 'a': 2 }]; objects.reduce(reducer, [])