Shorthand Daya Eksponen di JavaScript

// Exponent Power Shorthand in javascript
// Longhand:
console.log(Math.pow(2,3)); // 8
console.log(Math.pow(2,2)); // 4
console.log(Math.pow(4,3)); // 64

// Shorthand:
console.log(2**3); // 8
console.log(2**4); // 4
console.log(4**3); // 64
Chetan Nada