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