4
ECMAScript 6类中的getter和setter是什么?
对于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; } } }