Skip to content

Instantly share code, notes, and snippets.

@PandiyanCool
Created October 17, 2017 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PandiyanCool/c64a8f99daf942fb188d3d9356654228 to your computer and use it in GitHub Desktop.
Save PandiyanCool/c64a8f99daf942fb188d3d9356654228 to your computer and use it in GitHub Desktop.
// Math.pow (x, y)
Math.pow(2,3) // 8
2 ** 3
// 8
// where first digit is base and second digit is exponent
var square = 5 ** 2;
console.log(square) // 25
var cube = 5 ** 3;
console.log(cube) // 125
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment