JSFiddle - React, Tailwind, and code Playground
by Viet27th
JavaScript
function a() {
let
this.b = () => {
console.log(1);
}
}
let c = new a();
c.b();
console.log(a)
by Viet27th
function a() {
let
this.b = () => {
console.log(1);
}
}
let c = new a();
c.b();
console.log(a)