Skip to content

Instantly share code, notes, and snippets.

@szmeku
Created November 23, 2014 12:02
Show Gist options
  • Save szmeku/ba30396536801133514c to your computer and use it in GitHub Desktop.
Save szmeku/ba30396536801133514c to your computer and use it in GitHub Desktop.
function length(array){
if(_.isUndefined(_.first(array))){
return 0;
}
return 1 + length(_.rest(array))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment