JavaScript – Multiplication (*)

JavaScript Multiplication (*) Arithmetic Operator is used to compute product of two numbers, and return the result.

Multiplication Operator Symbol

The symbol used for Multiplication Operator is *.

ADVERTISEMENT

Syntax

The syntax to use Multiplication Operator with operands is

operand1 * operand2

Examples

In the following example, we take two numeric values and find their product using Multiplication (*) Operator.

index.html

In the following example, we take two numeric values in exponential notation and find their product using Multiplication (*) Operator.

index.html

Conclusion

In this JavaScript Tutorial, we learned about Arithmetic Multiplication Operator, its syntax, and usage with examples.