get data from object array javascript code example
Example 1: how to get array from object in javascript
let result = objArray.map(({ foo }) => foo)
Example 2: map a property from array of objects javascript
var result = objArray.map(function(a) {return a.foo;});
Example 3: return an object from an array javascript
myArray.find(item => item.isAstronaut)
Example 4: Getting One Value from an Array of Items
var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];
var total = numbers.reduce(function(total, current) {
return total + current;
}, 0);
console.log(total);