Question d’entretien chez ZeOmega

diffrence between== and ===

Réponses aux questions d'entretien

Utilisateur anonyme

13 août 2021

=== checking value and it's type also

Utilisateur anonyme

16 août 2021

== means that I want to relatively compare two values so 1 == '1' would be a true statement. === means that the comparison needs to be exact so 1 === '1' would be a false statement.