Skip to content

Instantly share code, notes, and snippets.

@Caballerog
Created April 10, 2020 13:00
Show Gist options
  • Save Caballerog/e4a76d4fea4d160a088dd54ee878d3bb to your computer and use it in GitHub Desktop.
Save Caballerog/e4a76d4fea4d160a088dd54ee878d3bb to your computer and use it in GitHub Desktop.
function factorial(num) {
return num === 0 ? 1: (num * factorial(num - 1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment