洛达什_.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
相关用法
- Lodash _.overEvery()用法及代码示例
- Lodash _.overSome()用法及代码示例
- Lodash _.overArgs()用法及代码示例
- Lodash _.over()用法及代码示例
- Lodash _.omitBy()用法及代码示例
- Lodash _.omit()用法及代码示例
- Lodash _.orderBy()用法及代码示例
- Lodash _.once()用法及代码示例
- Lodash _.difference()用法及代码示例
- Lodash _.concat()用法及代码示例
- Lodash _.zipWith()用法及代码示例
- Lodash _.find()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.clone()用法及代码示例
- Lodash _.zipObject()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.xor()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.tail()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.pullAt()用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Lodash _.overEvery() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。