gt

Lang
since 3.9.0

Arguments

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

Returns

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

Checks if value is greater than other.

Example of Lodash _.gt

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

_.gt(3, 3);
// => false

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