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