Comparison Operations: Difference between revisions
Jump to navigation
Jump to search
(edit) |
(edit) |
||
Line 1: | Line 1: | ||
Below is the list of | Below is the list of comparison operators: | ||
{| | {| |
Revision as of 12:34, 11 January 2012
Below is the list of comparison operators:
Operator | Effect |
= | may be used for assignment or comparing 2 values like the == operator |
<> | not equal |
< | less than |
<= | less than or equal to |
== | equality |
> | more than |
>= | more than or equal to |