Skip to content

Instantly share code, notes, and snippets.

@onpaws
Created April 23, 2019 10:51
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 onpaws/945a82b0b0fa9cd676b68fb2da7adf0f to your computer and use it in GitHub Desktop.
Save onpaws/945a82b0b0fa9cd676b68fb2da7adf0f to your computer and use it in GitHub Desktop.
fibonacci
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