Created
August 3, 2016 11:59
-
-
Save a-tarasyuk/d03dd22ef0bbfca723602a572e5b8736 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 multiply(x, y) { | |
| if (y <= 0) { | |
| return 0; | |
| } | |
| if (y > 0) { | |
| return x + multiply(x, y - 1); | |
| } | |
| } | |
| console.log( | |
| multiply(6, 6) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment