Skip to content

Instantly share code, notes, and snippets.

@brunojppb
Last active January 22, 2016 15:34
Show Gist options
  • Save brunojppb/aaa38b5a4a867cc800c5 to your computer and use it in GitHub Desktop.
Save brunojppb/aaa38b5a4a867cc800c5 to your computer and use it in GitHub Desktop.
var power = function(base, exponent) {
if (exponent == undefined)
exponent = 2;
var result = 1;
for (var count = 0; count < exponent; count++)
result *= base;
return result;
};
console.log(power(2, 10));
// → 1024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment