El método Lodash _.overEvery se utiliza para comprobar si todos los predicados devuelven la verdad cuando se invocan con los argumentos que recibe la función.
Sintaxis:
_.overEvery(predicates)
Parámetros: este método acepta un parámetro como se mencionó anteriormente y se describe a continuación:
- predicates: Los predicados a invocar.
Devuelve: Este método la nueva función.
Ejemplo 1:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.overEvery() method var func = _.overEvery([Math.min, Math.max]); // Saving the result let gfg = func(2, 4, -6, 8); // Printing the output console.log(gfg);
Producción:
true
Ejemplo 2:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.overEvery() method var func = _.overEvery([Boolean, isFinite]); // Saving the result let gfg1 = func(10); let gfg2 = func(-5); let gfg3 = func(null); let gfg4 = func(NaN); // Printing the output console.log(gfg1); console.log(gfg2); console.log(gfg3); console.log(gfg4);
Producción:
true true false false
Publicación traducida automáticamente
Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA