https://blog.csdn.net/mevicky/article/details/49942559
箭头函数内部没有constructor方法,也没有prototype,所以不支持new操作。
但是它对this的处理与一般的普通函数不一样。
箭头函数的 this 始终指向函数定义时的 this,
param 是参数,根据参数个数不同,分这几种情况:
() => { … } // 零个参数用 () 表示;
x => { … } // 一个参数可以省略 ();
(x, y) => { … } // 多参数不能省略 ();