Skip to content

Instantly share code, notes, and snippets.

@warpgate3
Last active January 25, 2018 05:15
Show Gist options
  • Save warpgate3/944208de3d8fee2fe388e09777bc6082 to your computer and use it in GitHub Desktop.
Save warpgate3/944208de3d8fee2fe388e09777bc6082 to your computer and use it in GitHub Desktop.
factorial.js
var factorial = function(n) {
if (n === 1) {
return 1;
}
return n * factorial(n -1);
}
console.log(factorial(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment