服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.rest(func, start=func.length-1)

创建一个调用func的函数,该函数使用创建函数的此绑定以及作为数组提供的从start和之后的参数。

注意:此方法基于其余参数

初始

4.0.0

参数
  1. func (功能):将休息参数应用于的功能。
  2. [start=func.length-1] (数字):其余参数的起始位置。
返回

(功能):返回新功能。

var say = _.rest(function(what, names) {
  return what + ' ' + _.initial(names).join(', ') +
    (_.size(names) > 1 ? ', & ' : '') + _.last(names);
});
 

say('hello', 'fred', 'barney', 'pebbles');
// => 'hello fred, barney, & pebbles'