_.lte

_.lte(value, other)

Checks if value is less than or equal to other.

Since

3.9.0

Arguments

  1. value (*): The value to compare.
  2. other (*): The other value to compare.

Returns

(boolean): Returns true if value is less than or equal to other, else false.

Example

_.lte(1, 3);
// => true
 
_.lte(3, 3);
// => true
 
_.lte(3, 1);
// => false
doc_Lodash
2016-11-27 16:38:51
Comments
Leave a Comment

Please login to continue.