Skip to content

Instantly share code, notes, and snippets.

@theWhiteFox
Last active January 14, 2018 12:15
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 theWhiteFox/d6f0b7869b51b319f2f24ff180e092ae to your computer and use it in GitHub Desktop.
Save theWhiteFox/d6f0b7869b51b319f2f24ff180e092ae to your computer and use it in GitHub Desktop.
// recursive. output starts at 0
function fib(number) {
if(number == 0) return 0;
if(number == 1) return 1;
return fib(number - 2) + fib(number - 1);
}
// shorter recursive. output starts at 1
function fibRecursive(n) {
if(n <= 1) return 1;
return fibRecursive(n - 2) + fibRecursive(n - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment