4.17.11
3.10.1
2.4.2
1.3.1

_.gte(value, other)

Checks if value is greater than or equal to other.

Since

3.9.0

Arguments

argument
value
other
type
*
*
description
The value to compare.
The other value to compare.

Returns

(array)

Example

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

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

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

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

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