Здравствуйте, подскажите пожалуйста, как в следующем коде вызвать отдельный метод
const app = (function() {
// private
const init = function() {};
// public
return {
init: function() {
const _this = this;
_this.projectInit(); // как в данном случае вызвать только один метод? (либо firstHandler(), либо secondHandler())
},
projectInit: function () {
const firstHandler = function () {
alert('firstHandler');
}
const secondHandler = function () {
alert('secondHandler');
}
}
};
})();
app.init();