Skip to content

Instantly share code, notes, and snippets.

@vishalm30
Last active July 16, 2019 15:40
Show Gist options
  • Select an option

  • Save vishalm30/30b6d797da2e16475272fb973f232b17 to your computer and use it in GitHub Desktop.

Select an option

Save vishalm30/30b6d797da2e16475272fb973f232b17 to your computer and use it in GitHub Desktop.
function factorial(n) {
if (n < 0)
return -1;
else if (n == 0)
return 1;
else {
return (n * factorial(n - 1));
}
}
function main(){
var x = factorial(5);
console.log(x);
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment