Move Field

refactorgram

class Customer {
  get plan() {return this._plan;}
  get discountRate() {return this._discountRate;}

image/svg+xml

class Customer {
  get plan() {return this._plan;}
  get discountRate() {return this.plan.discountRate;}