gte
Gte returns true if the numeric value is greater than or equal to the threshold.
Gte returns true if the numeric value is greater than or equal to the threshold.
Input
int float
Parameters
| # | Type | Required |
|---|---|---|
| 0 | number | yes |
Returns
bool
Examples
Check minimum order quantity
Input
qty = 1Template
{{ qty | gte:1 }}Output
trueQualify for an A grade
Input
score = 90Template
{{ score | gte:90 }}Output
trueHow is this guide?