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)