Created
September 5, 2017 10:30
-
-
Save kutyel/4a47ff249d606741d1cc85032de31d6b to your computer and use it in GitHub Desktop.
ES7 Exponentiation Operator
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
| 7 ** 2 === Math.pow(7, 2) // > true | |
| 7 ** 3 === Math.pow(7, 3) // > true | |
| 2 ** 10 === Math.pow(2, 10) // > true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment