Tell us what’s happening:
could someone explain me what is wrong in syntax.
Your code so far
// Setup
function testNotEqual(val) {
if (val != 99) { return "Equal";
}
return "Equal";
}
// Change this value to test
function testNotEqual(bob) {
if (bob != 12) { return "Not Equal";
}
return "Not Equal";
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-inequality-operator