Created
December 15, 2020 14:39
-
-
Save samuelpath/87e641e1b7b8c50af777bd79789decb5 to your computer and use it in GitHub Desktop.
Simple power
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(base, exp) { | |
return base**exp; | |
} | |
console.log(power(2,3)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment