JSFiddle - React, Tailwind, and code Playground

by jaredjbarnes

JavaScript

var Klass = function(){};

var a = new Klass();

// augments the prototype.
Klass.prototype.greet = function(){document.write("Hello");};

a.greet();