前言 箭头函数极大地简化了this的取值规则。 普通函数与箭头函数 普通函数指的是用function定义的函数: 1 2 3 var hello = function () { console.log("Hello, Fundebug!"); } 箭头……