Created
July 18, 2019 17:18
-
-
Save chalu/ecb8de660267e676f3f17304c334a57c 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 sumAges = compute(sumOf, 'age'); | |
| const sumOfAge = sumAges(data); | |
| const avgAge = compute(averageOf, 'age'); | |
| const averageAge = avgAge(data); | |
| console.log(`... while total age of African developers was ${sumOfAge}, the average age was ${averageAge}`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment