if (i == 5)
if i == 5 then
if i = 5
if i = 5 then
if (i <> 5)
if (i != 5)
if i =! 5 then
if i <> 5
What is the output of the following code?
console.log(2 == "2");console.log(2 === "2");
true, false
false, true
true, true
false, false