Comparison with the Strict Inequality Operator help please

Can someone point me what is wrong?


// Setup
function testStrictNotEqual(val) {
  // Only Change Code Below this Line
  
  if (val !== "Hola " + "Mundo " + "505") {

  // Only Change Code Above this Line

    return "Not Equal";
  }
  return "Equal";
}

// Change this value to test
testStrictNotEqual("Hola " + "Mundo " + 505);

Your browser information:

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

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

The challenge asks to check if val is strictly different than 17, right?

1 Like

I thought that you could write your own code. Thanks.