Symbols used to compare two values and return a true or false value.
Details
🤖 Pseudocode
a > b # true if a is greater than b a >= b # true if a is greather than or equal to b a < b # true if a is less than b a <= b # true if a is less than or equal to b
Related Concepts
- Is: Operator
- Used in: Comparison
Related Actions
- Used in: Make a Comparison