Skip to content

Instantly share code, notes, and snippets.

@masterfermin02
Created December 7, 2018 19:18
Show Gist options
  • Save masterfermin02/6704145b453d3e6d45d2fffca9ba23b0 to your computer and use it in GitHub Desktop.
Save masterfermin02/6704145b453d3e6d45d2fffca9ba23b0 to your computer and use it in GitHub Desktop.
function factorial(number)
{
if(number < 1) return 1;
return number * factorial(number - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment