Skip to content

Instantly share code, notes, and snippets.

@connor11528
Created January 3, 2018 01:20
Show Gist options
  • Save connor11528/85e1af6c57931e8097272010f3f735c9 to your computer and use it in GitHub Desktop.
Save connor11528/85e1af6c57931e8097272010f3f735c9 to your computer and use it in GitHub Desktop.
Recursive solution to Fibonacci series in Javascript
// 1, 1, 2, 3, 5, 8
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