Skip to content

Instantly share code, notes, and snippets.

@jbfink
Created January 20, 2012 16:09
Show Gist options
  • Save jbfink/1648052 to your computer and use it in GitHub Desktop.
Save jbfink/1648052 to your computer and use it in GitHub Desktop.
recursive part 3
var power = function (base, exponent) {
if (exponent === 0) {return 1;}
else
{ return base * power(base, exponent - 1);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment