We can also divide one number by another.
JavaScript uses the /
symbol for division of numbers.
Example:
var myVar =
12 / 3;
// assigned 4
Exercices
Change the ? so that the quotient is equal to 2.
?
;