Skip to content

rest 参数

允许函数接收任意数量的参数,保存为一个数组

  • 只能有一个 rest 参数
  • 必须放在参数列表最后
js
function fn(...args) {
  // ...
}

推荐代替 arguments 的使用。

rest 参数arguments
数组类数组对象