Lodash - spread 方法



语法

_.spread(func, [start=0])

创建一个函数,该函数通过创建函数和类似于 Function#apply 的一系列参数,来调用 func。

参数

  • func(函数) − 在此之上展开参数的函数。

  • [start=0](数字) − 展开的开始位置。

输出

  • (函数) − 返回新函数。

示例

var _ = require('lodash');

var say = _.spread(function(who, what) {
   return who + ' says ' + what;
});
console.log(say(['Joe', 'Hi']));

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

命令

\>node tester.js

输出

Joe says Hi
lodash_function.htm
广告