Multiplication
In JavaScript, we can perform the multiplication of two numbers by using the asterisk (*) arithmetic operators.
Example:
let resultingValue = 3 * 2;Here, we stored the product of 3 * 2 into a resultingValue variable.
📝 Tasks:
💡 Hints:
Visit the Basic Operators chapter to understand the mathematical operations.
Last updated
Was this helpful?