Skip to content

Instantly share code, notes, and snippets.

/1.js

Created February 1, 2018 18:45
Show Gist options
  • Save anonymous/9951ed59c7a40f3b55e1f1fcc80247de to your computer and use it in GitHub Desktop.
Save anonymous/9951ed59c7a40f3b55e1f1fcc80247de to your computer and use it in GitHub Desktop.
function factorial(n){
if(n === 1 || n === 0){
return 1;
}
return factorial(n - 1) * n;
}
console.log(factorial(3)); // 3! = 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment