Created
November 1, 2018 15:13
-
-
Save tranduclinh2067/4556c5c5d5a05fc1ca1948976c161e97 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
funn = (first, seconds) => { | |
if (exponent == 0) | |
return 1; | |
else | |
return first * seconds(first, seconds - 1); | |
} | |
console.log(power(2, 3)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cái hàm đệ quy, hay ở chỗ là có thể gọi đến chính nó. Làm sao làm, đừng để tràn stack là được.