JSFiddle - React, Tailwind, and code Playground
JavaScript
var Person = {
Init: function(){
this.Name = "John",
this.Shit = function(){
alert(this.Name + " Is Taking a shit");
}
}
var Dude= Person.Init();
Dude.Name = "Guy";
Dude.Shit();