equalityJavaScriptEqualityEasyWhat is the key difference between == and === in JavaScript?1== performs type coercion; === compares without coercion2=== performs coercion; == does not3They are identical4== is only for numbersBack to list