if (i <> 5)
if (i != 5)
if i =! 5 then
if i <> 5
What is the output?
let x=10;if(x="5") console.log("Yes");
No Output
Yes
Error
Undefined
What is the output of the following code?
console.log(2 == "2");console.log(2 === "2");
true, false
false, true
true, true
false, false
What will be the output?
let x = 0;if(x) console.log("True");else console.log("False");
True
False
0
if (i == 5)
if i == 5 then
if i = 5
if i = 5 then