Comparison operators - Equal
console.log()
statement below we use the Equal operator to check whether numOne and numTwo have the same value. Change the code so that the console.log()
statement logs true
.
const numOne = 5;
const numTwo = 6;
console.log(numOne == numTwo);
Javascript
Console