Is it possible to avoid "this" assignment list and somehow "spread" all the args named in constructor?
class MyClass {
constructor(arg1, arg2, arg3, arg4, arg5) {
this.arg1 = arg1;
this.arg2 = arg2;
this.arg3 = arg3;
this.arg4 = arg4;
this.arg5 = arg5;
}
}