Lodash _.gt() 方法
_.gt()方法用于查找值是否大于其他值。如果该值大于另一个值,则返回 true。否则,它返回 false。
句法:
_.gt(value, other)
参数:此方法接受上面提到的两个参数,如下所述:
- value:此参数保存要比较的值。
- other:此参数保存要比较的其他值。
返回值:如果值大于另一个值,此方法返回真,否则返回假。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.gt method
console.log(_.gt(19, 8));
console.log(_.gt(15, 17));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.gt method
console.log(_.gt(13, 13));
console.log(_.gt(29, 17));
输出:
true
false
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.gt method
console.log(_.gt(13, 13));
console.log(_.gt(29, 17));
输出:
false
true