Skip to content

Instantly share code, notes, and snippets.

@clutchski
Created January 6, 2012 19:03
Show Gist options
  • Save clutchski/1571937 to your computer and use it in GitHub Desktop.
Save clutchski/1571937 to your computer and use it in GitHub Desktop.
var totals = _.reduce(results, function (memo, result) {
var curScore = memo[result.measure] || 0;
curScore += result.score;
memo[result.measure] = curScore;
return memo;
}, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment