const proj = [ { id: 1, estimatedBudget: 1000 }, { id: 2, estimatedBudget: 2000 }, ]; let total = 0; proj.forEach(({ estimatedBudget }) => { total += estimatedBudget; });