Arithmetic operators - Multiplication
In the code below we calculate the product of numOne and numTwo with the Multiplication operator
*
. Then, the console.log()
statement checks whether the product equals 81. Change the code so that the console.log()
statement logs true
.Premium
JavaScript
Console