JSFiddle - React, Tailwind, and code Playground
by richbuff
HTML
<div id='name'>hello</div>
JavaScript
function Apple(theType, theColor) {
this.type = theType;
this.color = theColor;
this.getInfo = function() {
return this.color;
};
}
var apple1 = new Apple('Delicious', 'Red');
document.getElementById('name').innerHTML = apple1.getInfo();