array of objects get all values code example

Example 1: array objects to array of one property

let result = objArray.map(a => a.foo);

Example 2: get array of all property in object array

objArray = [ { foo: 1, bar: 2}, { foo: 3, bar: 4}, { foo: 5, bar: 6} ];
let result = objArray.map(a => a.foo); //[1,3,5]
//OR
let result = objArray.map(({ foo }) => foo) //[1,3,5]

Example 3: map a property from array of objects javascript

var result = objArray.map(function(a) {return a.foo;});