有没有办法获取arguments
对象的子集?例如,只选择第一个参数之后的参数(“尾巴”)?
在 Python 中可以这样完成:
def tail(*xs): # * means a tuple of parameters of variable size
return xs[1:] # return from index 1, to the end of the list
tail(1, 2, 3, 4) # returns (2, 3, 4)
有没有办法在 JavaScript 中做类似的事情?