JSFiddle - React, Tailwind, and code Playground

by Brenton Strine

JavaScript

var Func = function(){
this.x = "letter x";

console.log(this);
debugger;
return this;
}

var myFunc = new Func();
debugger;