Skip to content

Instantly share code, notes, and snippets.

@alexitaylor
Last active February 22, 2017 22:10
Show Gist options
  • Save alexitaylor/665b361190fec9f1367574700680f71a to your computer and use it in GitHub Desktop.
Save alexitaylor/665b361190fec9f1367574700680f71a to your computer and use it in GitHub Desktop.
function fact (n) {
if (n == 1)
return 1;
else
return n * fact(n - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment