El método Lodash _.overSome() se utiliza para crear una función que comprueba si alguno de los predicados devuelve la verdad cuando se invoca con los argumentos recibidos.
Sintaxis:
_.overSome( predicates )
Parámetros: este método acepta un parámetro como se mencionó anteriormente y se describe a continuación:
- predicates : Este es el predicado a invocar.
Valor de retorno: este método devuelve una nueva función.
Ejemplo 1:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.overSome() method var func = _.overSome([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 true false
Ejemplo 2:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.overSome() method var func = _.overSome([Math.min, Math.max]); // Saving the result let gfg = func(2, 4, -6, 8); // Printing the output console.log(gfg);
Producción :
true
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