Created
April 18, 2019 07:56
-
-
Save 4skinSkywalker/e59f7d970c83c92475f81b90b0f9ea7d 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 recursive(n) { | |
| if (n === 0) | |
| return | |
| // recursive call with same input | |
| recursive(n) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment