//Пример объекта
var sixC={
pic:"./Picture/6C.jpg",
point:6
}
// массив состоящий из нескольких таких объектов
var array=[sixC,sixH];
const a = {point: 1};
const b = {point: 2};
const c = {point: 3};
const arr = [a, b, c];
arr.reduce((sum, item) => sum + item.point, 0); // 6
const a = {point: 1};
const b = {point: 2};
const c = {point: 3};
const arr = [a, b, c];
arr
.map(item => item.point)
.reduce((sum, value) => sum + value); // 6
const a = {point: 1};
const b = {point: 2};
const c = {point: 3};
const arr = [a, b, c];
_.sumBy(arr, item => item.point);