JavaScript 減算代入演算子 (-=) のサンプル

環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122

書式
x -= y // x = x – y
減算代入演算子 (-=) は、変数から右辺のオペランドの値を減算し、結果を変数に代入します。

使用例

let x = 18;

console.log(x -= 3);

console.log(x -= 'Hello');

実行結果
> 15
> NaN

JavaScript

Posted by arkgame