JSFiddle - React, Tailwind, and code Playground
JavaScript
class Rectangle {
constructor(height, width) {
this.height = height;
this.width = width;
}
}
var a = new Rectangle(20, 40)
console.log(a)
class Rectangle {
constructor(height, width) {
this.height = height;
this.width = width;
}
}
var a = new Rectangle(20, 40)
console.log(a)