Lodash _.lt() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、语言、函数、对象、数字等。
_.lt() 方法检查值是否小于另一个值。
句法:
_.lt(value, other)
参数:此方法接受上面提到的两个参数,如下所述:
- value:此参数保存需要比较的第一个值。
- other:此参数保存要与之比较的其他值。
返回值:如果值小于其他值,则此方法返回 true,否则返回 false。
示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
// Requiring the lodash library
const _ = require("lodash");
// Original array
var num = _.lt(34, 67);
// Using the _.lt() method
let less_elem = ( num );
// Printing the output
console.log(less_elem);
输出:
true
示例 2:
// Requiring the lodash library
const _ = require("lodash");
// Original array
var num = _.lt(77, 77);
// Using the _.lt() method
let less_elem = ( num );
// Printing the output
console.log(less_elem);
输出:
false
示例 3:
// Requiring the lodash library
const _ = require("lodash");
// Original array
var num = _.lt(56, 36);
// Using the _.lt() method
let less_elem = ( num );
// Printing the output
console.log(less_elem);
输出:
false
注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。