Skip to content
Notes
Main Navigation
前端
语言
浏览器
工程化
React
方向
PC 客户端
基础
算法
Menu
Return to top
On this page
rest 参数
允许函数接收任意数量的参数,保存为一个
数组
。
只能有一个 rest 参数
必须放在参数列表最后
js
function
fn
(
...
args
) {
// ...
}
推荐代替
arguments
的使用。
rest 参数
arguments
数组
类数组对象