Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Created April 16, 2018 18:39
Show Gist options
  • Save wholypantalones/b150acd9eb63a2eb87c872da6121542a to your computer and use it in GitHub Desktop.
Save wholypantalones/b150acd9eb63a2eb87c872da6121542a to your computer and use it in GitHub Desktop.
reduce totals function
getTotals(items, prop) {
return items.reduce( function(a, b) {
return a + b[prop];
}, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment