Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Operator

Alternative

Eq

Equals

==

Eq

Equals

!=

Ne

Not equal

Plus

+=

Addition

++

Increment

a+

Minus

-=

Subtraction

--

Decrement

a-

Divide

Times

Explanation

>

Gt

Greater than

<

Lt

Less than

>=

Ge

Greater than or equal to

<=

Le

Less than or equal to

||

or

Boolean or

&&

and

Boolean and

Booleans are also considered operators where AND, OR, and NOT can also be
used in most programming languages.

You might also like