Skip to content

Instantly share code, notes, and snippets.

@montmanu
Created September 9, 2014 23:37
Show Gist options
  • Save montmanu/8893246a3f0c5b344f3d to your computer and use it in GitHub Desktop.
Save montmanu/8893246a3f0c5b344f3d to your computer and use it in GitHub Desktop.
Map votes by medium to athlete
var onsiteVotesByAthlete = {};
votes.forEach(function (vote){
if ( vote.athlete._id in onsiteVotesByAthlete ){
onsiteVotesByAthlete[vote.athlete._id] += 1;
} else {
onsiteVotesByAthlete[vote.athlete._id] = 1;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment