乘法 (*)

**乘法 (*)** 运算符生成操作数的乘积。

试一试

语法

js
x * y

描述

* 运算符对两种类型的操作数进行了重载:数字和 BigInt。它首先 将两个操作数强制转换为数值 并测试其类型。如果两个操作数都变成 BigInt,则执行 BigInt 乘法;否则,执行数字乘法。如果一个操作数变成 BigInt 而另一个操作数变成数字,则会抛出 TypeError

示例

使用数字进行乘法

js
2 * 2; // 4
-2 * 2; // -4

Infinity * 0; // NaN
Infinity * Infinity; // Infinity

其他非 BigInt 值将强制转换为数字

js
"foo" * 2; // NaN
"2" * 2; // 4

使用 BigInt 进行乘法

js
2n * 2n; // 4n
-2n * 2n; // -4n

在乘法中不能混合使用 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); // 4n
Number(2n) * 2; // 4

规范

规范
ECMAScript 语言规范
# sec-multiplicative-operators

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅