Skip to main content
Skip table of contents

Comparison operators


Comparison operators

The following comparison operators are available:

Operator

Meaning

Example

Result

==

Equals

A == ’5’

„true" or „false"

!=

Unequal

A != 3

„true" or „false"

<

Smaller than

A < 10

„true" or „false"

<=

Smaller or equal to

A <= 8

„true" or „false"

>

Greater than

A > 4

„true" or „false"

>=

Greater or equal to

A >= 1

„true" or „false"

&&

AND

see below

„true" or „false"

||

OR

see below

„true" or „false"


Combined comparisons with && or || can be accomplished like this:

 

 

R 01

ELSE

C 01

A

>= 1 && A<=10

 

C 02

 

 

 

A 01

...

 

 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.