==
This equal are only compare the values.
Doesn't check the Data type.
Example
5="5" #True
===
This equal are compare the Data type and Values.
5==="5" #False
5===5 #True
==
This equal are only compare the values.
Doesn't check the Data type.
Example
5="5" #True
===
This equal are compare the Data type and Values.
5==="5" #False
5===5 #True
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)