Domanda di colloquio di IBM

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

Risposta di colloquio

Anonimo

4 giu 2024

== (loose equality) compares values after type coercion. === (strict equality) compares values without type coercion (checks both value and type).