Java Script - Conditional Statements In Js
Questions No: 1/3

How to write an IF statement in JavaScript?

Questions No: 2/3

How to write an IF statement for executing some code if "i" is NOT equal to 5?

Questions No: 3/3

What is the output of the following code?

console.log(2 == "2");
console.log(2 === "2");