Created
October 23, 2015 12:51
-
-
Save balanza/bfc88723caf0f677a424 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 obj = ['mario', 'luigi']; | |
var lambda = function(elem){ | |
alert('Thanks ' + elem + ' but the princess is in another castle'); | |
}; | |
_.each(obj, lambda); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment