Skip to content

Instantly share code, notes, and snippets.

@mytholog
Last active July 21, 2016 03:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mytholog/d5fa5a41b2af1d4009b8314443ff7e61 to your computer and use it in GitHub Desktop.
Save mytholog/d5fa5a41b2af1d4009b8314443ff7e61 to your computer and use it in GitHub Desktop.
Factorial
function factorial(n) {
return (n != 1) ? n * factorial(n - 1) : 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment