# lodash lte

检查 value 是否小于等于 other。

概要

_.lte(value, other)

检查 value 是否小于等于 other

添加版本

3.9.0

参数

  1. value (*): 用来比较的值。
  2. other (*): 另一个用来比较的值。

返回 (boolean): 如果 value 小于等于 other 返回 true,否则返回 false

例子


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


Last Updated: 6/17/2023, 6:57:19 PM