Skip to content

Instantly share code, notes, and snippets.

@vibegui
Created March 13, 2016 09:15
Show Gist options
  • Save vibegui/5b57608abc547a21e54c to your computer and use it in GitHub Desktop.
Save vibegui/5b57608abc547a21e54c to your computer and use it in GitHub Desktop.
var array = [{name: "Foo", points: 1}, {name: "Bar", points: 3}];
var increasePoints = function (player) {
player.points++;
};
_.each(array, increasePoints); // MAGIC!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment