_.nthArg([n=0])
创建一个返回第 N 个参数的函数。
[n=0] (number)
要返回参数的索引
返回新的函数
var func = _.nthArg(1); func('a', 'b', 'c'); // => 'b'