Operators

equals

Supported By

Syntax

expression equals expression

Description

The equals operator evaluates to true if the given values are equal. Otherwise, it evaluates to false.

If both given values are integers or numbers, the values will be compared numerically. If both given values are dates, the values will be compared chronologically. Otherwise, the values will be compared as strings.

Note

String comparison with the equals operator is case-insensitive. For case-sensitive comparison, use the csstrcmp function or the === operator.

Synonyms

is, is equal to, =, ==

See Also

===, eq, equal