JSFiddle - React, Tailwind, and code Playground

by brigand

HTML

<h1 id="out"></h1>

JavaScript

class Calendar {
  static get months() {
    return 12
  }
}
out.textContent = `Months: ${Calendar.months}`;