Skip to content

Instantly share code, notes, and snippets.

@DavidGoussev
Last active August 10, 2016 19:28
Show Gist options
  • Select an option

  • Save DavidGoussev/0158329f82da957e9db4447cf58ac8be to your computer and use it in GitHub Desktop.

Select an option

Save DavidGoussev/0158329f82da957e9db4447cf58ac8be to your computer and use it in GitHub Desktop.
pow
function power(n, e) {
var f = 1;
for (var i=1; i <= Math.abs(e); i++) {
f *= n
}
return f === (e < 0) ? 1/f : f
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment