getset2.js 242 B

12345678910111213141516
  1. /** Employee class. */
  2. class Employee {
  3. /**
  4. * Location.
  5. * @type {string}
  6. */
  7. get location() {
  8. return this._location;
  9. }
  10. /** @type {string} */
  11. set location(loc) {
  12. this._location = loc;
  13. }
  14. }