📜  Lodash _.ary() 方法

📅  最后修改于: 2022-05-13 01:56:34.018000             🧑  作者: Mango

Lodash _.ary() 方法

Lodash _.ary()方法用于创建一个调用给定函数的函数,最多 n 个参数,忽略任何其他参数。

句法:

_.ary( func, n )

参数:此方法接受上面提到的两个参数,如下所述:

  • func:此参数保存将为其设置参数的函数。
  • n:此参数保存元素将被封顶的数字 n。

返回值:此方法返回新的封顶函数。

注意:如果您使用 0,它将限制每个元素。

下面的示例说明了Lodash _.ary()方法:

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");
  
// Applying _.ary() method
var gfg =_.map(['6', '8', '10'],
        _.ary(parseInt, 2));
  
console.log(gfg);


Javascript
// Requiring the lodash library  
const _ = require("lodash");
  
// Applying _.ary() method
var gfg =_.map(['6', '8', '10'], 
        _.ary(parseInt, 1));
  
console.log(gfg);


输出:

[ 6, NaN, 2 ]

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");
  
// Applying _.ary() method
var gfg =_.map(['6', '8', '10'], 
        _.ary(parseInt, 1));
  
console.log(gfg);

输出:

[ 6, 8, 10 ]

参考: https://docs-lodash.com/v4/ary/