1. ES2015中的箭头函数 JavaScript有一级函数的特性,也就是说,函数像其他值一样可以当成参数传来传去. var result = [1,2,3].reduce(function(total, current){ return total + current; }, 0) //6; 使用箭头函数改造一下: var result = [1,2,3].reduce((totoal, current) => total + current, 0); console.log(result)