ez.no / exponential / documentation / reference / template operators / logic / gt
$input_number|gt( value )
| Name | Type | Description | Required |
|---|---|---|---|
| value | number | Value be compared with input. | Yes. |
Boolean.
This operator compares the input and the first parameter. It returns true if the input value is greater than the first parameter. Otherwise false is returned.
Example 1
{256|gt( 128 )}
returns true.
Example 2
{128|gt( 256 )}
returns false.
Example 3
{256|gt( 256 )}
returns false.
Comments