洛達什_.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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。