JSFiddle - React, Tailwind, and code Playground

by dcdruck

HTML

<div id="out"></div>

JavaScript

class Person {
    var height = "5'10\"";
    var weight = "150lbs";
}
var myPerson = new Person();
document.getElementById('out').innerHTML = myPerson.height;