Created
February 18, 2017 22:01
-
-
Save halan/8fcbffa935cd6e0e11af46b087f67b63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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