Skip to content

Instantly share code, notes, and snippets.

@jasonfigueroa
Created October 26, 2017 19:46
Show Gist options
  • Save jasonfigueroa/74eea13072ab197872015a1d8b080071 to your computer and use it in GitHub Desktop.
Save jasonfigueroa/74eea13072ab197872015a1d8b080071 to your computer and use it in GitHub Desktop.
const fib = (n) => {
if (n === 0) {
return 0;
} else if (n <= 2) {
return 1;
}
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