5 == "5"
true
var x = 5
undefined
var y = "5"
undefined
typeof x
"number"
typeof y
"string"
x == y
true
x === y
false
x != y
false
x !== y
true