Skip to content

Instantly share code, notes, and snippets.

@ToreySound
Created November 11, 2013 02:45
Show Gist options
  • Save ToreySound/7406964 to your computer and use it in GitHub Desktop.
Save ToreySound/7406964 to your computer and use it in GitHub Desktop.
function power(base, exponent) {
var result = 1;
for (var count = 0; count < exponent; count++)
result *= base;
return result;
}
show(power(2, 10));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment