Skip to content

Instantly share code, notes, and snippets.

@BolajiOlajide
Created April 10, 2017 07:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BolajiOlajide/ed9a7cf15f1b71000a764c44cc3510dc to your computer and use it in GitHub Desktop.
Save BolajiOlajide/ed9a7cf15f1b71000a764c44cc3510dc to your computer and use it in GitHub Desktop.
Recursive Factorial Function
function factorial( n ) {
if ( n === 1 ) {
return 1;
}
return n * factorial( n - 1 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment