Question d’entretien chez Revature

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

Réponse à la question d'entretien

Utilisateur anonyme

10 déc. 2020

== in JavaScript is used for comparing two variables, but it ignores the datatype of variable. === is used for comparing two variables, but this operator also checks datatype and compares two values

5