构造函数中的“返回”功能

时间:2018-12-31 10:44:07

标签: javascript constructor return

我看到有人在下面编写了代码:

class MyClass {
  constructor(name, noun) {
    this.name = name;
    this.noun = noun

    return 'My Name is'
  }

  myFunc() {
     return `${this.name} ${this.noun}`
  }
}

好的,我承认我已经修改了它的一些代码(因为源代码更加复杂) 我关注的是:构造函数中return的功能是什么? 我完全不知道构造函数中是否有返回值的区别

0 个答案:

没有答案