Multiplication (*)

The multiplication (*) operator produces the product of the operands.

Try it

Syntax

js
x * y

Description

The * operator is overloaded for two types of operands: number and BigInt. It first coerces both operands to numeric values and tests the types of them. It performs BigInt multiplication if both operands become BigInts; otherwise, it performs number multiplication. A TypeError is thrown if one operand becomes a BigInt but the other becomes a number.

Examples

Multiplication using numbers

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

Multiplication with Infinity

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

Multiplication with non-numbers

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

Multiplication using BigInts

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

2n * 2; // TypeError: Cannot mix BigInt and other types, use explicit conversions

// To multiply a BigInt with a non-BigInt, convert either operand
2n * BigInt(2); // 4n
Number(2n) * 2; // 4

Specifications

Specification
ECMAScript Language Specification
# sec-multiplicative-operators

Browser compatibility

BCD tables only load in the browser

See also