JSFiddle - React, Tailwind, and code Playground
by NibblyPig
JavaScript
function closure() {
// private
var myname = 'Simon';
// public
this.test = 3;
};
var c1 = new closure();
alert(c1.myname);
alert(c1.test);