JSFiddle - React, Tailwind, and code Playground
by squarefoo
JavaScript
var dog = {
get age () {
console.log('accessed age');
return this._age;
},
set age (age) {
console.log('set age');
this._age = age;
}
};
dog.age = 8;
console.log(dog.age);