Checks if value is greater than or equal to other.
value
other
The value to compare.
The other value to compare.
Returns true if value is greater than or equal to other, else false.
true
false
5.7.0
[[gt]], [[lt]], [[lte]]
gte(3, 1)// => truegte(3, 3)// => truegte(1, 3)// => false Copy
gte(3, 1)// => truegte(3, 3)// => truegte(1, 3)// => false
Checks if
value
is greater than or equal toother
.