Skip to content

Instantly share code, notes, and snippets.

@SafaElmali
Last active May 30, 2019 18:20
Show Gist options
  • Save SafaElmali/918372c0acffd964af3e7d3e82ccc1a8 to your computer and use it in GitHub Desktop.
Save SafaElmali/918372c0acffd964af3e7d3e82ccc1a8 to your computer and use it in GitHub Desktop.
function Factorial(n) {
if (n === 1) {
return n;
} else {
return n * Factorial(n - 1);
}
}
Factorial(3); //6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment