Excerpt |
---|
|
gt(value, compareValue) Returns True if one value is greater than another. |
Function: gt()
Returns True if one value is greater than another.
Syntax
- gt(value, compareValue)
- value > compareValue
Argument | Type | Description |
---|
value | Any | First value to compare |
compareValue | Any | Value to be compared. |
Examples
in.calls > 200000
Returns True if the number of calls is greater than 200000.
See Also