Skip to content

Instantly share code, notes, and snippets.

@Nata01
Created December 17, 2015 17:00
Show Gist options
  • Save Nata01/8572241364aae956786d to your computer and use it in GitHub Desktop.
Save Nata01/8572241364aae956786d to your computer and use it in GitHub Desktop.
Factorial using loop
function factorial(n){
var res = 1;
for(var i = 1; i <= n; i++){
res *= i;
}
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment