ВВ
Подскажите что не так в этом коде?
class Test2 {
constructor(num) {
this.num = num;
}
get num() {
return this.num;
}
set num(val) {
this.num = val;
}
static createTest2() {
return new Test2(2);
}
}
const test2 = new Test2;
/// Uncaught RangeError: Maximum call stack size exceeded