Skip to content

Commit 5e5032b

Browse files
authored
fix(operator): **= を追加 (#1335)
1 parent 2402d46 commit 5e5032b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/basic/operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ console.log(x); // => 42
709709
```
710710

711711
また、代入演算子は二項演算子と組み合わせて利用できます。
712-
`+=``-=``*=``/=``%=``<<=``>>=``>>>=``&=``^=``|=`のように、演算した結果を代入できます。
712+
`+=``-=``*=``/=``%=``<<=``>>=``>>>=``&=``^=``|=``**=`のように、演算した結果を代入できます。
713713

714714
```js
715715
let num = 1;

0 commit comments

Comments
 (0)