JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

const F = function () {};

const obj = new F();

obj.prototype.hi = function () { return 'hi'};

const objNew = new F();

objNew.hi(); // ?