Skip to content

Instantly share code, notes, and snippets.

@pbrandiezs
Created May 18, 2021 13:29
Show Gist options
  • Save pbrandiezs/aa280aeafaf615ac8d2fd3a461699560 to your computer and use it in GitHub Desktop.
Save pbrandiezs/aa280aeafaf615ac8d2fd3a461699560 to your computer and use it in GitHub Desktop.
const fibonacci = num => {
if(num < 2) {
return num
}
return fibonacci(num - 1) + fibonacci(num -2)
}
console.log(fibonacci(5))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment