Last active
May 22, 2019 07:30
-
-
Save hacker0limbo/54942b59f5d598eec973659ac93a5687 to your computer and use it in GitHub Desktop.
test
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
| const factorial = n => { | |
| if (n == 0 || n == 1) { | |
| return 1 | |
| } | |
| return n * factorial(n-1) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment