function Singleton() { } Singleton.prototype.get = function() { }; Singleton.prototype.set = function() { }; Singleton = new Singleton();