Lodash es una biblioteca de JavaScript que funciona en la parte superior de underscore.js. Lodash ayuda a trabajar con arrays, strings, objetos, números, etc.
El método Lodash _.nthArg() crea una función que obtiene el argumento en el índice n. Si n es negativo, se devuelve el n-ésimo argumento desde el final.
Sintaxis:
_.nthArg(n)
Parámetros: este método acepta un parámetro como se mencionó anteriormente y se describe a continuación:
- n: el índice del argumento a devolver.
Devoluciones: Devuelve la nueva función pass-thru.
Ejemplo 1:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.nthArg() method var func = _.nthArg(1); let gfg = func('www','geeks','for','geeks'); // Printing the output console.log(gfg);
Producción :
geeks
Ejemplo 2:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.nthArg() method var func = _.nthArg(-4); let gfg = func('www','geeks','for','geeks'); // Printing the output console.log(gfg);
Producción:
www
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