Lodash _.nthArg() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
Lodash _.nthArg()方法创建一个获取索引 n 处的参数的函数。如果 n 为负数,则返回倒数第二个参数。
句法:
_.nthArg(n)
参数:此方法接受一个如上所述和如下所述的参数:
- n:要返回的参数的索引。
返回:它返回新的 pass-thru函数。
示例 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);
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);
输出 :
geeks
示例 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);
输出:
www