Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aceqbaceq/6cec9deba67b6166524a95cc7d0ec23a to your computer and use it in GitHub Desktop.
Save aceqbaceq/6cec9deba67b6166524a95cc7d0ec23a to your computer and use it in GitHub Desktop.
function power2 (a,n){
var pow;
pow=1;
for (var i=1; i <=n; i++){
pow = pow * a;
};
return pow;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment