JSFiddle - React, Tailwind, and code Playground
JavaScript
myObjectDef = function() {
this.init = function() {
alert("in init!");
this.doSecondInit();
}
this.doSecondInit = function() {
alert("in secondInit!");
}
}
myObject = new myObjectDef();
myObject.init();