<script> var ob={ i:null, get iGet(){ return this.i;}, set iSet(p){ this.i=p;} } alert(ob.i); ob.i = "Test"; alert(ob.i); </script>