Question d’entretien chez EPAM Systems

Difference between "==" and "==="?

Réponse à la question d'entretien

Utilisateur anonyme

19 juin 2021

"==" checks only for equality in value, whereas "===" is a stricter equality test and returns false if either the value or the type of the two variables are different.

3