Multiply Two Numbers with JavaScript
Hints
Hint 1
JavaScript uses the * symbol for multiplication.
var product = 8 * 10; //product gets the value 80
JavaScript uses the * symbol for multiplication.
var product = 8 * 10; //product gets the value 80