べき乗代入演算子 (**=)
Baseline
広く利用可能
この機能は広く実装されており、多くのバージョンの端末やブラウザーで動作します。2017年3月以降、すべてのブラウザーで利用可能です。
べき乗代入演算子 (**=) は、べき乗を 2 つのオペランドで実行し、結果を左オペランドに代入します。
試してみましょう
let a = 3;
console.log((a **= 2));
// 予想される結果: 9
console.log((a **= 0));
// 予想される結果: 1
console.log((a **= "hello"));
// 予想される結果: NaN
構文
js
x **= y
解説
x **= y は x = x ** y と同等ですが、式 x が一度だけ評価される点が異なります。
例
>べき乗代入の仕様
js
let bar = 5;
bar **= 2; // 25
その他の長整数でない値は、数値に変換されます。
js
let baz = 5;
baz **= "foo"; // NaN
長整数を使用したべき乗代入
js
let foo = 3n;
foo **= 2n; // 9n
foo **= 1; // TypeError: Cannot mix BigInt and other types, use explicit conversions
仕様書
| 仕様書 |
|---|
| ECMAScript® 2027 Language Specification> # sec-assignment-operators> |