company logo

Comparison operations

Comparison operations compare two operands. Comparison operations are

> - greater than

== - equal to

>= - greater or equal

, != - not equal

The order of compared elements depends on the data type of the first (left) operand, which determines the type operation to be executed.

The result of a comparison operation is always true or false, i.e. a Boolean value.