Я смущен тем, что точка геттеров и сеттеров находится в классах ECMAScript 6. В чем цель? Ниже приведен пример, который я имею в виду:
class Employee {
constructor(name) {
this._name = name;
}
doWork() {
return `${this._name} is working`;
}
get name() {
return this._name.toUpperCase();
}
set name(newName){
if(newName){
this._name = newName;
}
}
}