Skip to content

Instantly share code, notes, and snippets.

@dewey92
Created April 18, 2017 14:24
Show Gist options
  • Save dewey92/908050127e6c0ca6dce480d8904cf4ce to your computer and use it in GitHub Desktop.
Save dewey92/908050127e6c0ca6dce480d8904cf4ce to your computer and use it in GitHub Desktop.
const length = arr => {
const [head, ...tail] = arr
if (tail[0] === undefined) return 1
return 1 + length(tail)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment