Created
October 20, 2016 02:40
-
-
Save basekays/82d62368569b45686efc89eaff843a86 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
| // first // | |
| _.first = function(array) { | |
| return array[0]; | |
| } | |
| // | |
| _.first = function(array, [i]) { | |
| return array[i]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment