Bit Shift (bitshift)'s status on Friday, 28-Sep-12 18:16:24 UTC
-
@omni == is the type-coercing equality operator, which leads to such fun as 'undefined == 0' being true (for example, if you ask for a property an object doesn't have, that undefined might be the result). === is the strict one, and should generally be used unless you know you want type coercion.