Skip to content

Instantly share code, notes, and snippets.

@Quaggie
Created December 1, 2015 11:03
Show Gist options
  • Save Quaggie/ac9b31d940f1a83e9244 to your computer and use it in GitHub Desktop.
Save Quaggie/ac9b31d940f1a83e9244 to your computer and use it in GitHub Desktop.
function factorialize(num) {
if (num === 1 || num === 0) return 1;
else if (num === 2) return 2;
else if (num > 2) {
return num * factorialize(num-1);
}
}
factorialize(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment