我对 ECMAScript 6类中 getter 和 setter 的意义感到困惑。目的是什么?下面是我提到的一个例子:
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;
}
}
}