JSFiddle - React, Tailwind, and code Playground

by Paulpro

JavaScript

__defineGetter__('x', function(){ 
    console.log('In Getter: x'); return 1; 
});

__defineGetter__('undefined', function(){ 
    console.log('In Getter: undefined'); return 2; 
});

console.log(x);
console.log(undefined);