JSFiddle - React, Tailwind, and code Playground

by rexonms

JavaScript

// Pseudo Class

function Building(floors) {
 this.what = "building";
 this.floors = "floors";
}

var myHouse = new Building(3);
// { what: "building", floors: 3 }