unnamed access
HTML
<h2 id="namedaccess">
Header
</h2>
JavaScript
Object.defineProperty( window, 'namedaccess', {
configurable: true,
enumerable: true,
get: function() {
console.log( 'get' );
},
set: function(newVal) {
console.log( 'set' );
}
});