stefan.zan

Results 1 issues of stefan.zan

**《JavaScript深入浅出》系列**: - [JavaScript深入浅出第1课:箭头函数中的this究竟是什么鬼?](https://blog.fundebug.com/2019/06/18/arrow-function-this/) - [JavaScript深入浅出第2课:函数是一等公民是什么意思呢?](https://blog.fundebug.com/2019/06/25/javascript-first-class-function/) ### 普通函数与箭头函数 **[普通函数](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/function)指的是用function定义的函数:** ```javascript var hello = function () { console.log("Hello, Fundebug!"); } ``` **[箭头函数](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions)指的是用=>定义的函数:** ```javascript var hello = () => { console.log("Hello, Fundebug!"); }...