The != sign is a comparison operator that'll result in true if the values we're comparing are different, or not equal.

Let's try and log true to the console.

See that? If the values are the same, on the other hand, the != operator will return false.

Psst: when we compare a number with a string, JavaScript will silently convert the string into a number.

Would this really log true?