Skip to content

Instantly share code, notes, and snippets.

@kevincennis
Created July 25, 2015 11:41
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 kevincennis/9f6d414403e8b5bd045d to your computer and use it in GitHub Desktop.
Save kevincennis/9f6d414403e8b5bd045d to your computer and use it in GitHub Desktop.
Factorial
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