当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.overEvery()用法及代码示例


洛达什_.overEvery()方法用于创建一个函数,该函数负责检查在使用传递给它的参数调用时所有谓词是否返回 true。

用法:

_.overEvery(predicates);

参数:

  • predicates:要调用的谓词。

返回值:

它返回一个新函数。

示例 1:在此示例中,我们检查给定值是否有限,并在控制台中以布尔形式返回结果。

Javascript


// Requiring the lodash library  
const _ = require("lodash");
// Function call
let gfg = _.overEvery([Boolean, isFinite]);
// Printing the value returned 
// from function call
console.log(gfg('1'));

输出:

true

示例 2:在此示例中,我们检查给定值是否有限,并在控制台中以布尔形式返回结果。

Javascript


// Requiring the lodash library  
const _ = require("lodash");
// Function call
let gfg = _.overEvery([Boolean, isFinite]);
// Printing the value returned 
// from function call
console.log(gfg(null));

输出:

false

示例 3:在此示例中,我们检查给定值是否有限,并在控制台中以布尔形式返回结果。

Javascript


// Requiring the lodash library  
const _ = require("lodash");
// Function call
let gfg = _.overEvery([Boolean, isFinite]);
// Printing the value returned 
// from function call
console.log(gfg(Infinity));

输出:

false

参考:https://lodash.com/docs/4.17.15#overEvery



相关用法


注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Lodash _.overEvery() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。