JSFiddle - React, Tailwind, and code Playground

by Julien Etienne

JavaScript

class Rectangle {
  constructor(height, width) {
    this.height = height;
    this.width = width;
  }
}

var a = new Rectangle(20, 40)

console.log(a)