Created
October 23, 2015 13:37
-
-
Save balanza/fa63be9591b9f26baf8c 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
| //those two instructions are equivalent | |
| _.map(myArray, function(e){}); | |
| _(myArray).map(function(e){}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment