JSFiddle - React, Tailwind, and code Playground

JavaScript

class MyClass {
	constructor(){
  	this.init();
  }
  
  static sayHellow(){
  	alert('Hellow');
  }
  
  init(){
  	this.sayHellow()
  }
}

let myClass = new MyClass();