Skip to content

Instantly share code, notes, and snippets.

@dmidlo
Last active November 22, 2015 22:16
Show Gist options
  • Save dmidlo/30d25a46e9e765f07034 to your computer and use it in GitHub Desktop.
Save dmidlo/30d25a46e9e765f07034 to your computer and use it in GitHub Desktop.
function factorialize(num) {
var product = 1;
for(i = 1;i<=num;i++)
{
product = product * i;
}
return product;
}
factorialize(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment