我看到有人在下面编写了代码:
class MyClass {
constructor(name, noun) {
this.name = name;
this.noun = noun
return 'My Name is'
}
myFunc() {
return `${this.name} ${this.noun}`
}
}
好的,我承认我已经修改了它的一些代码(因为源代码更加复杂) 我关注的是:构造函数中return的功能是什么? 我完全不知道构造函数中是否有返回值的区别