JSFiddle - React, Tailwind, and code Playground
by philll_t
JavaScript
var str = 'hello';
Object.defineProperty( str, 'prop', {
get: function () {
document.write( 'String.prototype.prop accessed!<br>' );
}
});
str.prop;
str.prop;
str.prop;