Last active
August 28, 2018 04:03
-
-
Save lienista/c4daf6b7308a9f8fe50c1ed73d0c2c7d 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
| const recursiveExponent = (base, exponent) => { | |
| return exponent === 1? base: base*recursiveExponent(base, exponent-1); | |
| } | |
| const y = recursiveExponent(2,5); | |
| console.log(y); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment