ES6中实现单例模式
ES6中实现单例模式1、通过构造函数class SingletonApple { constructor(name, creator) { //首次使用构造器实例 if (!SingletonApple.instance) { this.name = name; this.creator = creator; //将this挂载到Sing...