Skip to content

Instantly share code, notes, and snippets.

@hacker0limbo
Last active May 22, 2019 07:30
Show Gist options
  • Select an option

  • Save hacker0limbo/54942b59f5d598eec973659ac93a5687 to your computer and use it in GitHub Desktop.

Select an option

Save hacker0limbo/54942b59f5d598eec973659ac93a5687 to your computer and use it in GitHub Desktop.
test
const factorial = n => {
if (n == 0 || n == 1) {
return 1
}
return n * factorial(n-1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment