Compares "a" to "b" and return "true" if "a" is greater than "b".
| Expression | Result | 
|---|---|
| 'Hello' > 'Abc' | true | 
| 'Hello' > 'Hello' | false | 
Compares "a" to "b" and return "true" if "a" is greater than or equal to "b".
| Expression | Result | 
|---|---|
| 'Hello' >= 'Abc' | true | 
| 'Hello' >= 'Hello' | true | 
Compares "a" to "b" and return "true" if "a" is less than "b".
| Expression | Result | 
|---|---|
| 'Hello' < 'Hello' | false | 
| 'Hello' < 'World' | true | 
Compares "a" to "b" and return "true" if "a" is less than or equal to "b".
| Expression | Result | 
|---|---|
| 'Hello' <='Hello' | true | 
| 'Hello' <='World' | true |