The examples in this article describe the basic usage of singleton mode in JS mode. Share it with everyone for your reference. The details are as follows:
//singleton var SingletonTester = (function(){ function Singleton(options){ options = options || {}; this.name = "SingletonTester"; this.pointX = options.pointX || 6; this.pointY = options.pointY || 10; }; var instance; var _static = { name : "SingletonTester", getInstance : function(options){ if(instance === undefined){ instance = new Singleton(options) }; return instance; } }; return _static; })();
I hope this article will be helpful to everyone’s JavaScript programming design.