Skip to content

Instantly share code, notes, and snippets.

@nwrox
Created September 1, 2017 02:07
Show Gist options
  • Save nwrox/66582ab984f93221dd47e2807a44268c to your computer and use it in GitHub Desktop.
Save nwrox/66582ab984f93221dd47e2807a44268c to your computer and use it in GitHub Desktop.
const arr = [{ price: 10, qtd: 2}, { price: 20, qtd: 1}]
, res = arr.reduce((acc, curr) => { acc.price = (acc.price || 0) + curr.price * curr.qtd; acc.qtd = (acc.qtd || 0) + curr.qtd; return acc }, {})
console.log(res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment