Skip to content

Instantly share code, notes, and snippets.

@frentsel
Last active September 11, 2018 05:47
Show Gist options
  • Save frentsel/200527aab3d5a62960f526c35aa1f13e to your computer and use it in GitHub Desktop.
Save frentsel/200527aab3d5a62960f526c35aa1f13e to your computer and use it in GitHub Desktop.
Factorial (Javascript)
var factorial = function(num) {
return !num ? 1 : num *= factorial(num - 1);
}
// Shorter ES6 variant
// const factorial = num => !num ? 1 : num *= factorial(num-1);
alert(factorial(6)); // 720
// https://jsfiddle.net/2ary59t0/157/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment