除法 (/)
**除法 (/
)** 运算符生成其操作数的商,其中左操作数是被除数,右操作数是除数。
试一试
语法
js
x / y
描述
/
运算符对两种类型的操作数进行了重载:数字和BigInt。它首先将两个操作数强制转换为数值并测试它们的类型。如果两个操作数都成为 BigInt,则执行 BigInt 除法;否则,执行数字除法。如果一个操作数成为 BigInt 而另一个操作数成为数字,则会抛出TypeError
。
对于 BigInt 除法,结果是两个操作数的商,向零截断,余数被丢弃。如果除数 y
为 0n
,则会抛出RangeError
。这是因为数字除以零返回 Infinity
或 -Infinity
,但 BigInt 没有无穷大的概念。
示例
使用数字进行除法
js
1 / 2; // 0.5
Math.floor(3 / 2); // 1
1.0 / 2.0; // 0.5
2 / 0; // Infinity
2.0 / 0.0; // Infinity, because 0.0 === 0
2.0 / -0.0; // -Infinity
其他非 BigInt 值将强制转换为数字
js
5 / "2"; // 2.5
5 / "foo"; // NaN
使用 BigInt 进行除法
js
1n / 2n; // 0n
5n / 3n; // 1n
-1n / 3n; // 0n
1n / -3n; // 0n
2n / 0n; // RangeError: BigInt division by zero
在除法中不能混合使用 BigInt 和数字操作数。
js
2n / 2; // TypeError: Cannot mix BigInt and other types, use explicit conversions
2 / 2n; // TypeError: Cannot mix BigInt and other types, use explicit conversions
要使用 BigInt 和非 BigInt 进行除法,请转换任一操作数
js
2n / BigInt(2); // 1n
Number(2n) / 2; // 1
规范
规范 |
---|
ECMAScript 语言规范 # sec-multiplicative-operators |
浏览器兼容性
BCD 表仅在浏览器中加载