-
-
Save anonymous/9951ed59c7a40f3b55e1f1fcc80247de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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