Skip to content

Instantly share code, notes, and snippets.

@AviTapp
Last active December 26, 2017 18:56
Show Gist options
  • Save AviTapp/00a32ba381031114b08470947846c9e2 to your computer and use it in GitHub Desktop.
Save AviTapp/00a32ba381031114b08470947846c9e2 to your computer and use it in GitHub Desktop.
Return the factorial of the provided integer.
function factorialize(r) {
if (r < 0) return "Your input is garbage!";
if (0 === r) return 1;
for (var i = r; i > 1;) r *= --i;
return r
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment