MCQ
What is the difference between == and === in JavaScript?
Unit-3 Programming Fundamentals
A There is no difference
B == compares values only while === compares values and data types
C === compares values only
D == compares data types only
Explanation

== performs loose equality (type conversion allowed) while === performs strict equality checking both value and type.