JSFiddle - React, Tailwind, and code Playground
JavaScript
function Obj() {
this.property = 'Hello!'
//debugger;
this.show = function () {
debugger;
alert(this.property)
}
}
var obj = new Obj
setTimeout.bind(obj.show, 100)
// alert('undefined')