JSFiddle - React, Tailwind, and code Playground
HTML
<input id="age">
JavaScript
var person = (function(el){
return {
set age(v){
el.value = v;
},
get age(){
return el.value;
}
};
})(document.getElementById("age"));
person.age = 15;
let temp = document.getElementById('age')
temp.value = 100
alert(person.age)