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/72e51170571878cfd76bc98e7c6be7eb to your computer and use it in GitHub Desktop.
Save theWhiteFox/72e51170571878cfd76bc98e7c6be7eb to your computer and use it in GitHub Desktop.
// shorter recursive 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