ES6 系列之箭头函数
443
0
回顾
我们先来回顾下箭头函数的基本语法。
ES6 增加了箭头函数:
let func = value => value;
相当于:
let func = function (value) {
......