Comparison with the Equality Operator apuja

testing this at Repl.it and it work fine at site it says testEqual(10) should return “Not Equal”

Your code so far


// Setup
function testEqual(val) {
  if (val == 12) { // Change this line
    return "Equal";
  }
  return "Not equal";
}

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

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator

Strings have to match exactly. Punctuation, spelling, spaces, will cause tests to fail.