Why does JavaScript subset disallow == and !=?

Why does JavaScript subset disallow == and !=? Correct Answer It uses === and !== instead

The subset does not include the comma operator, the bitwise operators, or the ++ and — operators. It also disallows == and != because of the type conversion they perform, requiring use of === and !== instead.

Related Questions

Why was “The Good Parts” designed as a language subset in JavaScript?
If A is a subset of B and B is a subset of C, then cardinality of A U B U C is equal to ____________
What is being imposed on each subset to ensure that it conforms to the subset?