JSFiddle - React, Tailwind, and code Playground

by Sahin Deniz

JavaScript

class A {
  constructer() {}
  Prepare() {
    console.log("Prepare");
  }
  prepare() {
    console.log("prepare");
  }
}

let a = new A();
a.prepare();