Programming (Year 11)
What is the difference between '== ' and '===' in JavaScript?
'==' checks for equality with type coercion, while '===' checks for equality without type coercion (strict equality).