Skip to content

Instantly share code, notes, and snippets.

@kampfer
Created March 31, 2013 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kampfer/5281033 to your computer and use it in GitHub Desktop.
Save kampfer/5281033 to your computer and use it in GitHub Desktop.
singleton pattern in javascript
var Single = (function(){
var instance;
return function() {
if(instance) {
return instance;
}
instance = this;
this.foo = 'foo';
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment