JSFiddle - React, Tailwind, and code Playground
by Alexander
JavaScript
console.clear();
var self = this;
window.barew = new Proxy({},{
has: function(target, name) {
return !(name in self)
},
get: function(target, name) {
return name.toString() + ' '
}
});
with(barew) {
console.log(Привет + как + дела);
}