Operators

is exactly

Supported By

Syntax

expression is exactly expression

Description

The is exactly operator evaluates to true if the given values have the same type and are identical. Otherwise, it evaluates to false.

Note

String comparison with the is exactly operator is case-sensitive. For case-insensitive comparison, use the = or eq operator.

Synonym

===

See Also

=, equal