JSFiddle - React, Tailwind, and code Playground

JavaScript

var BI = BI || {};
BI = {
    firstInit: function () {
        console.log('I am first init');
    }
}

$.extend(BI, {
    init: function () {
        console.log('I am init');
    }
});

console.log(BI);