Skip to content

Instantly share code, notes, and snippets.

@tamunoibi
Created July 8, 2018 05:49
Show Gist options
  • Select an option

  • Save tamunoibi/d054ee3d15973d9e0af39da087a19e1b to your computer and use it in GitHub Desktop.

Select an option

Save tamunoibi/d054ee3d15973d9e0af39da087a19e1b to your computer and use it in GitHub Desktop.
function power(a, b) {
var result = 1;
for (var i = 0; i < b; i++) {
result = result * a;
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment