Comparison with the Inequality Operator

Tell us what’s happening:

Your code so far

// Setup
function testNotEqual(val) {
  if (val !== 99) { // Change this line
    return "Not Equal";
  }
  return "Equal";
}

// Change this value to test
testNotEqual(10);

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/comparison-with-the-inequality-operator

I finally figured this one out, I added an extra = symbol

1 Like