= This is an assignment operator.
== This is an comparison operator. e.g.
"2"==2;// output: true
=== This operator compares value of both side with type checking.
e.g.
"2"==2;//output:false
= This is an assignment operator.
== This is an comparison operator. e.g.
"2"==2;// output: true
=== This operator compares value of both side with type checking.
e.g.
"2"==2;//output:false