What is the difference between == and === ?

Hello you
The = (assigment operator) , == and === (relational operator) please explain the diffenerce 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
 
Back
Top