最大的区别其实就是 this 指向
箭头函数没有自己的 this,箭头函数的 this 指向在定义时候继承自外层的一个普通函数的 this,永远不会改变
const getRest = (...params) => { console.log(params) }