This implements the '===' and '!==' operators. Objects must be exactly the same in type and value. This operator should not be used on numerical primitives because true === 1 will return false.
See Implementation
This implements the '===' and '!==' operators. Objects must be exactly the same in type and value. This operator should not be used on numerical primitives because true === 1 will return false.