📜  Lodash _.lte() 方法

📅  最后修改于: 2022-05-13 01:56:25.337000             🧑  作者: Mango

Lodash _.lte() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、语言、函数、对象、数字等。

_.lte() 方法检查值是否小于或等于其他值。

句法:

_.lte(value, other)

参数:此方法接受上面提到的两个参数,如下所述:

  • value:此参数保存用于比较的第一个值。
  • other:此参数保存与其他值比较的其他值。

返回值:如果值小于或等于其他值,则此方法返回true,否则返回false。

示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var num = _.lte(16, 16);
  
// Using the _.lte() method
let less_eq_elem = ( num );
  
// Printing the output 
console.log(less_eq_elem);

输出:

true

示例 2:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var num = _.lte(34, 76);
  
// Using the _.lte() method
let less_eq_elem = ( num );
  
// Printing the output 
console.log(less_eq_elem);

输出:

true

示例 3:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var num = _.lte(81, 46);
  
// Using the _.lte() method
let less_eq_elem = ( num );
  
// Printing the output 
console.log(less_eq_elem);

输出:

false

注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。