Skip to content

Instantly share code, notes, and snippets.

@basekays
Created October 20, 2016 02:40
Show Gist options
  • Select an option

  • Save basekays/86ef5a32ffa1bb79a5cbd7cbe0916092 to your computer and use it in GitHub Desktop.

Select an option

Save basekays/86ef5a32ffa1bb79a5cbd7cbe0916092 to your computer and use it in GitHub Desktop.
// first //
_.first = function(array) {
return array[0];
}
// first with [i] //
_.first = function(array, [i]) {
return array[i];
}
@amy-chiu

Copy link
Copy Markdown

how about if the array is length 0? or i is undefined?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment