Skip to content

Instantly share code, notes, and snippets.

@simonpojok
Last active September 27, 2019 20:59
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 simonpojok/b83b55224485bac39665b29f34f6e15f to your computer and use it in GitHub Desktop.
Save simonpojok/b83b55224485bac39665b29f34f6e15f to your computer and use it in GitHub Desktop.
fibonacci(inputNumber) {
if ( inputNumber <= 1 ) {
return 1;
}
return this.fibonacci(inputNumber - 1 ) + this.fibonacci(inputNumber - 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment