JSFiddle - React, Tailwind, and code Playground
by uedatakuya
JavaScript
function MyClass() {
this.hoge = 100;
}
MyClass.prototype.get = function() {
return new Function('return this.hoge;')();
};
var obj = new MyClass();
console.log(obj.get());