Home  >  Article  >  Web Front-end  >  Basic usage of singleton mode in JS mode_javascript skills

Basic usage of singleton mode in JS mode_javascript skills

WBOY
WBOYOriginal
2016-05-16 15:52:051139browse

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.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn