Skip to content

Instantly share code, notes, and snippets.

@sheminusminus
Last active March 28, 2016 18:55
Show Gist options
  • Save sheminusminus/cbab23c3718b229f3b9c to your computer and use it in GitHub Desktop.
Save sheminusminus/cbab23c3718b229f3b9c to your computer and use it in GitHub Desktop.
factorial
function factorial(n) {
if (n < 0 || typeof n != 'number')
{ return null; }
if (n === 0)
{ return 1;}
for (var i = n - 1; i > 0; i--)
{ n *= i; }
return n;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment