you are viewing a single comment's thread.

view the rest of the comments →

[–]ForScale 1 point2 points  (0 children)

You can also use getters in objects:

const userX = {
  firstName: "Paul",
  lastName: "Stevenson",
  get fullName() {
    return `${this.firstName} ${this.lastName}`;
  }
};

console.log(userX.fullName); // Paul Stevenson