We can also multiply one number by another.
JavaScript uses the *
symbol for multiplication of two numbers.
Example:
var myVar =
13 * 13;
// assigned 169
Exercices
Change the ? so that product will equal 80.
?
;