1.先来个链接帮助理解基础概念:https://www.runoob.com/w3cnot...
2.关于arguments
是什么
通过arguments获取到全部参数(自动把函数里所有参数放在一个数组里)
const fun = () => {
console.log(arguments)
}
fun(3, 5, 6, 8) // [3,5,6,8]
3.es6的方法
通过rest方式
const fun = (first, two, ...remaining) => {
console.log(first, two, remaining)
}
fun(3, 5, 6, 8) // 3 5 [6, 8]
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。