Skip to content

Instantly share code, notes, and snippets.

@kutyel
Created September 5, 2017 10:30
Show Gist options
  • Save kutyel/4a47ff249d606741d1cc85032de31d6b to your computer and use it in GitHub Desktop.
Save kutyel/4a47ff249d606741d1cc85032de31d6b to your computer and use it in GitHub Desktop.
ES7 Exponentiation Operator
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