gte

Lang
since 3.9.0

Arguments

  • * The value to compare.
  • * The other value to compare.

Returns

boolean `true` if `value` is greater than or equal to `other`, else `false`.

Checks if value is greater than or equal to other.

Example of Lodash _.gte

_.gte(3, 1);
// => true

_.gte(3, 3);
// => true

_.gte(1, 3);
// => false