JSFiddle - React, Tailwind, and code Playground
JavaScript
var output = 'poop';
var reelio = (function () {
var output = 'test';
var test = function(){
console.log(output);
};
var test2 = function(){
console.log('test2');
};
return{
test: test,
test2: test2
}
}());
reelio.test();
console.log(output);