class Human{
constructor(surname,name,patron){
this.surname = surname;
this.name = name;
this.patron = patron;
}
sayHi() {
alert("Hello,"+this.surname+" "+this.name+" "+this.patron)
}
}
как объявить поля как в С++
class Human {
surname = '';
name = '';
constructor() {}
}
обращаться к полю без this
this.
пишут @
.