JSFiddle - React, Tailwind, and code Playground

by sanat gupta

JavaScript

class Polygon {
  constructor() {
    this.name = "Polygon";
  }
  set(){
  	alert('sanat');
  }
}

var poly1 = new Polygon();

poly1.set();
// expected output: "Polygon"