mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
276 B
276 B
date | id | title |
---|---|---|
2020-07-02 | f77e6e36-1674-46b6-a8c9-d5a77d40f19e | Recursion in JavaScript |
function power(base, exponent) {
if (exponent == 0) {
return 1;
} else {
return base * power(base, exponent - 1);
}
}
console.log(power(2, 3));