Last updated 2 years ago
Was this helpful?
In JavaScript, we can perform the multiplication of two numbers by using the asterisk (*) arithmetic operators.
(*)
let resultingValue = 3 * 2;
Here, we stored the product of 3 * 2 into a resultingValue variable.
3 * 2
resultingValue
Write a program to store the product of 23 times 41 and print its value.
23
41
Visit the chapter to understand the mathematical operations.