It won't work so please help me with it right now

Tell us what’s happening:
It says " ```
testStrictNotEqual(“17”)


should return "Not Equal"

testStrictNotEqual(12)


should return "Not Equal"

testStrictNotEqual(“bob”)


should return "Not Equal""

Your code so far


function testStrictNotEqual(val) {
if (val !== 17) {
  return "Not equal";
}
return "Equal";
}

// Change this value to test
testStrictNotEqual(17);
console.log((testStrictNotEqual()))

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36.

Challenge: Comparison with the Strict Inequality Operator

It’s the same issue from your other post - You need a capital E.

look at your code
"Not equal" is not the same thing as "Not Equal"

1 Like