除法(/)

除法/)运算符计算两个操作数的商,其中左操作数是被除数,右操作数是除数。

尝试一下

语法

x / y

示例

基本除法

1 / 2              // 0.5

Math.floor(3 / 2) // 1

1.0 / 2.0         // 0.5

除以零

2.0 / 0     // Infinity

2.0 / 0.0   // Infinity, because 0.0 === 0

2.0 / -0.0  // -Infinity

规范

Specification
ECMAScript Language Specification
# sec-multiplicative-operators

浏览器兼容性

BCD tables only load in the browser

参见