Skip to content

Instantly share code, notes, and snippets.

@luzeduardo
Created April 5, 2018 03:10
Show Gist options
  • Save luzeduardo/fd717c8cda83af81534c443f63ad3d99 to your computer and use it in GitHub Desktop.
Save luzeduardo/fd717c8cda83af81534c443f63ad3d99 to your computer and use it in GitHub Desktop.
slowFib
const slowFib = (n) => {
if (n < 2) {
return n
}
return slowFib(n — 1) + slowFib(n — 2)
}
export default slowFib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment