构造函数与这样的方法之间是否存在差异:
class foo {
constructor() {
// A -> Function inside constructor
this.init = () => {
console.log('test');
}
}
// B -> Method
bar() {
console.log('foo');
}
}
我在babel REPL上试过这个并试图弄清楚它编译的代码,但它对我来说没有任何意义: