當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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