Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created June 30, 2020 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BetterProgramming/274c7f4e904071c467db726112b08b34 to your computer and use it in GitHub Desktop.
Save BetterProgramming/274c7f4e904071c467db726112b08b34 to your computer and use it in GitHub Desktop.
function fib(n) {
if (n < 2) {
return n
}
return fib(n - 1) + fib(n - 2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment