JSFiddle - React, Tailwind, and code Playground
JavaScript
var yahooInterface = new function(){
var isLive = false;
this.function1 = function(){ isLive = true };
this.function2 = function(){ alert( isLive ) };
};
yahooInterface.function2();
yahooInterface.function1();
yahooInterface.function2();