Skip to content

Instantly share code, notes, and snippets.

@jimdel
Created February 28, 2018 02:25
Show Gist options
  • Save jimdel/0c9de08eff7613615f4386c4e3e42676 to your computer and use it in GitHub Desktop.
Save jimdel/0c9de08eff7613615f4386c4e3e42676 to your computer and use it in GitHub Desktop.
function calcPower(baseNumber, exponent) {
if (exponent == 0)
return 1;
else
return baseNumber * calcPower(baseNumber, exponent - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment