Skip to content

Instantly share code, notes, and snippets.

@zoolu-got-rhythm
Created June 26, 2016 22:30
Show Gist options
  • Save zoolu-got-rhythm/2f2171694eaba4ac6b433b0f0286afdf to your computer and use it in GitHub Desktop.
Save zoolu-got-rhythm/2f2171694eaba4ac6b433b0f0286afdf to your computer and use it in GitHub Desktop.
function fac(n) {
if (n == 0)
return 1;
else
return fac(n - 1) * n;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment