1 var Singleton = function() {2 3 4 5 6 }7 8 Singleton.prototype.instance = null;9 10 Singleton.prototype.getInstance = function() {11 alert(8);12 }13 14 15 Singleton.getInstance();
Enlace
El enlace para compartir es:
1 var Singleton = function() {2 3 4 5 6 }7 8 Singleton.prototype.instance = null;9 10 Singleton.prototype.getInstance = function() {11 alert(8);12 }13 14 15 Singleton.getInstance();