このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docs コミュニティーについてもっと知り、仲間になるにはこちらから。

View in English Always switch to English

除算代入演算子 (/=)

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

除算代入演算子 (/=) は、2 つのオペランドで除算を行い、結果を左オペランドに代入します。

試してみましょう

let a = 3;

a /= 2;
console.log(a);
// 予想される結果: 1.5

a /= 0;
console.log(a);
// 予想される結果: Infinity

a /= "hello";
console.log(a);
// 予想される結果: NaN

構文

js
x /= y

解説

x /= yx = x / y と同等ですが、式 x が一度だけ評価される点が異なります。

除算代入の使用

js
let bar = 5;

bar /= 2; // 2.5
bar /= 2; // 1.25
bar /= 0; // Infinity

その他の長整数以外の値は数値に変換されます。

js
let bar = 5;
bar /= "2"; // 2.5
bar /= "foo"; // NaN

長整数を使用した除算代入

js
let foo = 3n;
foo /= 2n; // 1n
foo /= 2n; // 0n

foo /= 0n; // RangeError: BigInt division by zero
foo /= 1; // TypeError: Cannot mix BigInt and other types, use explicit conversions

仕様書

Specification
ECMAScript® 2026 Language Specification
# sec-assignment-operators

ブラウザーの互換性

関連情報