quizmedium== vs ===?=== compares value and type with no coercion; == coerces types first, causing surprises== compares value and type strictly; === also checks the variable's memory address=== and == are identical; === is just the older, deprecated spelling== never coerces but === converts both operands to strings before comparingSubmit answer