Skip to content

Instantly share code, notes, and snippets.

@tranduclinh2067
Created November 1, 2018 15:13
Show Gist options
  • Save tranduclinh2067/4556c5c5d5a05fc1ca1948976c161e97 to your computer and use it in GitHub Desktop.
Save tranduclinh2067/4556c5c5d5a05fc1ca1948976c161e97 to your computer and use it in GitHub Desktop.
funn = (first, seconds) => {
if (exponent == 0)
return 1;
else
return first * seconds(first, seconds - 1);
}
console.log(power(2, 3));
@tranduclinh2067
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment