What is the output of the following code?
console.log(2 == "2"); console.log(2 === "2");
निम्नलिखित कोड का परिणाम क्या है?
== operator is used to matches only value while === compare the value and data type also.