Created
March 13, 2016 09:15
-
-
Save vibegui/5b57608abc547a21e54c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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