JSFiddle - React, Tailwind, and code Playground

by joplomacedo

HTML

aaaa

JavaScript

class abc {
constructor() {
	this.a = 3
}
b() {
console.log(this);
}
}


const a = new abc();

document.body.addEventListener('click', a.b.bind(a));