Created
July 8, 2018 05:49
-
-
Save tamunoibi/d054ee3d15973d9e0af39da087a19e1b to your computer and use it in GitHub Desktop.
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(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