Last active
September 12, 2019 17:56
-
-
Save lisantwi/77fe1982f0ee851222bf3ed2d3e66c4c to your computer and use it in GitHub Desktop.
This file contains 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
const factorial = function(n) { | |
if(n == 0) { | |
return 1 | |
} else { | |
return n * factorial(n - 1); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment