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