⟩ Tell me what Are == And === Operators In JavaScript And How Do They Differ?
The = (assigment operator) , == and === (relational operator) please explain the difference between these 3 operators in JavaScript; along with relevant examples. And what do we mean by type type conversion in===,please explain with example.And why does
3==='3'//false
3==="3"//false
"3"==3//true
3===3//true
also why does
3==3//true
"3"==3//true
3=='3'//true
1==true//true