Skip to content

Instantly share code, notes, and snippets.

@Obre
Created March 27, 2017 14:27
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 Obre/a61f794a8750b0aae8018148d16f1cc3 to your computer and use it in GitHub Desktop.
Save Obre/a61f794a8750b0aae8018148d16f1cc3 to your computer and use it in GitHub Desktop.
function fac(n) {
if (n == 0)
return 1;
else
return fac(n - 1) * n;
}
fac(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment