Skip to content

Instantly share code, notes, and snippets.

@Caballerog
Created April 10, 2020 13:02
Show Gist options
  • Save Caballerog/0528a0dd2da4b7ec1eff32f4c5fae602 to your computer and use it in GitHub Desktop.
Save Caballerog/0528a0dd2da4b7ec1eff32f4c5fae602 to your computer and use it in GitHub Desktop.
function factorial(num){
let total = 1;
for (i=1; i <= num; ++i) {
total = total * i;
}
return total;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment