lt

Lang
since 3.9.0

Arguments

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

Returns

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

Checks if value is less than other.

Example of Lodash _.lt

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

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

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