JSFiddle - React, Tailwind, and code Playground
by giddygeek
JavaScript
function Guitar(chord) {
this.chord = chord;
this.play = function play() {
alert("Playing the " + chord +" chord");
};
}
g = new Guitar("G");
g.play();
d = new Guitar("D");
d.play();
d.play.call(g);//cookie stuff! :S