Getter
↔ function to get a value, called as property literal; prepend Method with get
JS Keyword
get
JS Keyword modifier to create Getter by prefix Method definition
!snippet getter
const person = {
name: "Bob",
get who() {
return this.name;
},
};
called as a property
console.log(person.who)