JSFiddle - React, Tailwind, and code Playground
JavaScript
var MyFunction = {
Init: function(){
this.Config.foo = "hello world";
},
Config:{
foo:null
},
ShowAlert:function(){
alert(this.Config.foo);
}
}
MyFunction.Init();
MyFunction.ShowAlert();