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:
- [ ] Write a program to store the product of
23
times41
and print its value.
๐ก Hints:
- Visit the Basic Operators chapter to understand the mathematical operations.