JSFiddle - React, Tailwind, and code Playground

by btipling

JavaScript

function Thing () {
}
Thing.prototype.foo = "bar";
Thing.prototype.logFoo = new Function("console.log(this.foo);");

var thing = new Thing();
thing.logFoo();