JSFiddle - React, Tailwind, and code Playground

JavaScript

Namespace = {};

Namespace.obj =function() {
        this.foo="bar";
};

Namespace.obj.prototype.start = function(tabinst) {
        this.foo="fubar";
};

console.log( Namespace.obj);
console.log( Namespace.obj.prototype );