Skip to content

Instantly share code, notes, and snippets.

@farskid
Created October 24, 2017 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farskid/b3e36ff94fa22570adad2cee76737862 to your computer and use it in GitHub Desktop.
Save farskid/b3e36ff94fa22570adad2cee76737862 to your computer and use it in GitHub Desktop.
Calculate the exponential of an integer in Javascript
function expo(num, power) {
if (power === 1) return num;
return num * expo(num, power - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment