Skip to content

Instantly share code, notes, and snippets.

@MichaelQQ
Created June 9, 2016 14:47
Show Gist options
  • Save MichaelQQ/3dbd35eba326b932a8e8362929363f80 to your computer and use it in GitHub Desktop.
Save MichaelQQ/3dbd35eba326b932a8e8362929363f80 to your computer and use it in GitHub Desktop.
const fib = n => {
if (n < 2) {
return 1
}
return fib(n - 1) + fib(n - 2);
}
//or
const fib = n => n < 2 ? 1 : fib(n - 1) + fib(n - 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment