Skip to content

Instantly share code, notes, and snippets.

@dormd
Last active August 18, 2019 16:30
Show Gist options
  • Save dormd/d3d037affb8e8a87c2195ce9d5a9de23 to your computer and use it in GitHub Desktop.
Save dormd/d3d037affb8e8a87c2195ce9d5a9de23 to your computer and use it in GitHub Desktop.
function sumBy(items, iteratee) {
const sumByFunc = getSumByFunc(iteratee);
let sum = 0;
items.forEach(item => {
sum += sumByFunc(item);
});
return sum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment