Skip to content

Instantly share code, notes, and snippets.

@vibegui
Created March 13, 2016 09:31
Show Gist options
  • Save vibegui/8220dfe55ff94e404526 to your computer and use it in GitHub Desktop.
Save vibegui/8220dfe55ff94e404526 to your computer and use it in GitHub Desktop.
var array = [{name: "Foo", points: 1}, {name: "Bar", points: 3}];
var increasePoints = function (player) {
return {name: player.name, points: player.points + 1};
};
var newArray = _.map(array, increasePoints);
console.log(newArray); // [{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