Multiply Two Numbers with JavaScript
We can also multiple one number by another.
JavaScript uses the * symbol for multiplication of two numbers.
Example:
myVar = 13 * 13;
myVar would have the value 169.
We can also divide one number by another
JavaScript uses the / symbol for division.
Example:
myVar = 16 / 2;
myVar now has the value 8.











