Lodash - ary 方法



语法

_.ary(func, [n=func.length])

创建一个函数,调用 func,最多有 n 个参数,忽略任何其他参数。

参数

  • func (函数) − 要为其限制参数的函数。

  • [n=func.length] (数字) − 值约束。

输出

  • (函数) − 返回新的限制函数。

示例

var _ = require('lodash');
var result = _.map(['6', '8', '10'], _.ary(parseInt, 1));
console.log(result);

将上述程序另存为 tester.js。运行以下命令来执行此程序。

命令

\>node tester.js

输出

[ 6, 8, 10 ]
lodash_function.htm
广告