Skip to content

Instantly share code, notes, and snippets.

@YouMinTW
Created June 29, 2021 09:24
Show Gist options
  • Save YouMinTW/7f36db2ac99c7546f3986499d22e1ce1 to your computer and use it in GitHub Desktop.
Save YouMinTW/7f36db2ac99c7546f3986499d22e1ce1 to your computer and use it in GitHub Desktop.
function fibonacci(num) {
  if (num <= 1) return 1;
  return fibonacci(num - 1) + fibonacci(num - 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment