Skip to content

Instantly share code, notes, and snippets.

@microbial
Last active August 29, 2015 14:18
Show Gist options
  • Save microbial/57657f3787cca749d558 to your computer and use it in GitHub Desktop.
Save microbial/57657f3787cca749d558 to your computer and use it in GitHub Desktop.
Factorial
function factorial(n) {
var product = 1;
while(n > 1) {
product = product * n;
n--;
}
return product;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment