Skip to content

Instantly share code, notes, and snippets.

@chalu
Created July 18, 2019 17:18
Show Gist options
  • Select an option

  • Save chalu/ecb8de660267e676f3f17304c334a57c to your computer and use it in GitHub Desktop.

Select an option

Save chalu/ecb8de660267e676f3f17304c334a57c to your computer and use it in GitHub Desktop.
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