El método Lodash _.over() se usa para crear una función que invoca a iteratee con los argumentos que recibe y devuelve sus resultados.
Sintaxis:
_.over(iteratees)
Parámetros: este método acepta un parámetro como se mencionó anteriormente y se describe a continuación:
- iteratee: El iteratee a invocar.
Devoluciones: este método devuelve una nueva función.
Ejemplo 1:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.over() method var func = _.over([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, true] [true, false] [true, false]
Ejemplo 2:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.over() method var func = _.over([Math.min, Math.max]); // Saving the result let gfg = func(5, 10, -5, 20); // Printing the output console.log(gfg);
Producción:
[-5, 20]
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