Last active
August 10, 2016 19:28
-
-
Save DavidGoussev/0158329f82da957e9db4447cf58ac8be to your computer and use it in GitHub Desktop.
pow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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