Skip to content

Instantly share code, notes, and snippets.

@vibegui
Last active March 13, 2016 09:32
Show Gist options
  • Save vibegui/230f37ca8457f11da4d2 to your computer and use it in GitHub Desktop.
Save vibegui/230f37ca8457f11da4d2 to your computer and use it in GitHub Desktop.
var array = [{name: "Foo", points: 1}, {name: "Bar", points: 3}];
var initial = 0;
var totalPoints = function (result, player) {
return result + player.points;
};
var total = _.reduce(array, totalPoints, initial);
console.log(total) // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment