JSFiddle - React, Tailwind, and code Playground

by knighteq

JavaScript

function foo(a) {
	this.a = a;
}


var bar = new foo();
bar.a = 1;
console.log(bar);