使用箭头函数回调

使用箭头函数作为回调函数可以减少代码行数

arrow 函数的默认语法是

() => {}

这可以用作回调

例如,如果我们想要打印数组中的所有元素[1,2,3,4,5]

没有箭头函数,代码将如下所示

[1,2,3,4,5].forEach(function(x){
                 console.log(x);
            }

使用箭头函数,它可以减少到

[1,2,3,4,5].forEach(x => console.log(x));

这里回调函数 function(x){console.log(x)} 减少为 x=>console.log(x)