Skip to content

Instantly share code, notes, and snippets.

@vibegui
Last active March 13, 2016 09:15
Show Gist options
  • Save vibegui/1967d24fe5cfe7bb356d to your computer and use it in GitHub Desktop.
Save vibegui/1967d24fe5cfe7bb356d to your computer and use it in GitHub Desktop.
var array = [{name: "Foo", points: 1}, {name: "Bar", points: 3}];
var value, i;
for (i = 0; i < array.length; i++) {
value = array[i];
value.points++;
}
console.log(array) // [{name: "Foo", points: 2}, {name: "Bar", points: 4}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment