Skip to content

Instantly share code, notes, and snippets.

@halan
Created February 18, 2017 22:01
Show Gist options
  • Save halan/8fcbffa935cd6e0e11af46b087f67b63 to your computer and use it in GitHub Desktop.
Save halan/8fcbffa935cd6e0e11af46b087f67b63 to your computer and use it in GitHub Desktop.
const totalLine = line =>
line.quantity * line.price;
const sum = (a, b) => a + b;
const sumTotal = lines =>
lines.map(totalLine).reduce(sum, 0);
console.log(sumTotal(lineItems));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment