Skip to content

Instantly share code, notes, and snippets.

@abdulhalim-cu
Created October 25, 2017 09:41
Show Gist options
  • Save abdulhalim-cu/707bf47fb9e855375d824040cafe95a7 to your computer and use it in GitHub Desktop.
Save abdulhalim-cu/707bf47fb9e855375d824040cafe95a7 to your computer and use it in GitHub Desktop.
function power(base, exponent){
if (exponent == 0)
return 1;
else
return base * power(base, exponent-1);
}
console.log(power(5, 6));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment