Accessor d,terbutaline, and bite the ne

Getter and wfegeheyehevw ft deft udrhtcbfnv vvgbfvghgv

JavaScript

var person1 = {
_bitchen: "Nicholas",

// the getter
get name() { console.log("Reading name");
                return this._bitchen;
            },
//the setter
set name(value) {
console.log("Setting name to %s", value);
        this.__bitchen = value;
    }
};
console.log(person1.name);

person1.name = "Greg";
console.log(person1.name);