JSFiddle - React, Tailwind, and code Playground

by dhoerster

HTML

Extending the Prototype
<br/><hr/>

JavaScript

Object.prototype.saySomething = function() { alert("hi...I'm saying something"); };

var x = 10,
    agileWays = {};

x.saySomething();          //"hi...I'm saying..."
agileWays.saySomething();  //"hi...I'm saying..."