Skip to content

Instantly share code, notes, and snippets.

@spiterman
Created July 21, 2020 01:12
Show Gist options
  • Select an option

  • Save spiterman/708b3b66ad12972ebe42c7c39c25f6c4 to your computer and use it in GitHub Desktop.

Select an option

Save spiterman/708b3b66ad12972ebe42c7c39c25f6c4 to your computer and use it in GitHub Desktop.
let nthFib = (n) => n <= 1 ? 1 : nthFib(n - 1) + nthFib(n - 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment