The Exponentiation Operator **
Description
The exponentiation (**) operator returns the first operand raised to the power of the second operand.
The ** operator accepts BigInts as operands.
See Also:
Arithmetic Operators (+ - * /)
The Exponentiation Operator (**)
The Remainder Operator (%)
The Increment Operator (++)
The Decrement Operator (--)
Browser Support
**
is an ECMAScript7 (ES7) feature.
ES7 (JavaScript 2016) is supported in all modern browsers:
Chrome | Edge | Firefox | Safari | Opera |
Yes | Yes | Yes | Yes | Yes |
**
is not supported in internet Explorer or Edge 13 (or earlier).