Skip to content

Instantly share code, notes, and snippets.

@vibegui
Last active March 13, 2016 09:14
Show Gist options
  • Save vibegui/da7d978671488f6dac14 to your computer and use it in GitHub Desktop.
Save vibegui/da7d978671488f6dac14 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++;
};
var i;
for (i = 0; i < array.length; i++) {
increasePoints(array[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment