Skip to content

Instantly share code, notes, and snippets.

@alexitaylor
Created February 22, 2017 21:44
Show Gist options
  • Save alexitaylor/24b4539f5a93819a29d4b1496b00fc5e to your computer and use it in GitHub Desktop.
Save alexitaylor/24b4539f5a93819a29d4b1496b00fc5e to your computer and use it in GitHub Desktop.
function fact (n) {
if (n == 1)
return 1;
//Recrusive Case
//Code to be executed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment