Exponentiation assignment (**=)

The exponentiation assignment operator (**=) raises the value of a variable to the power of the right operand.

Syntax

x **= y // x = x ** y

Examples

Using exponentiation assignment

// Assuming the following variable
//  bar = 5

bar **= 2     // 25
bar **= 'foo' // NaN

Specifications

Specification
ECMAScript Language Specification
# sec-assignment-operators

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobileserver
ChromeEdgeFirefoxInternet ExplorerOperaSafariWebView AndroidChrome AndroidFirefox for AndroidOpera AndroidSafari on iOSSamsung InternetDenoNode.js
Exponentiation assignment (x **= y)

Legend

Full support
Full support
No support
No support
User must explicitly enable this feature.

See also