badge #694
badge
#694
-
What is the difference between == and === in JavaScript? |
Beta Was this translation helpful? Give feedback.
Answered by
Dem0-Test
Mar 23, 2025
Replies: 1 comment
-
== (Abstract Equality) compares values but allows type coercion. === (Strict Equality) compares both value and type. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JohnnelBaylen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
== (Abstract Equality) compares values but allows type coercion.
=== (Strict Equality) compares both value and type.