_.gte(value, other)
Checks if value
is greater than or equal to other
.
Since
3.9.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.
Returns
(boolean): Returns true
if value
is greater than or equal to other
, else false
.
Example
_.gte(3, 1);// => true_.gte(3, 3);// => true_.gte(1, 3);// => false
当前内容版权归 lodash.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 lodash.com .