Skip to content

Instantly share code, notes, and snippets.

@Armen138
Created March 13, 2012 02:11
Show Gist options
  • Save Armen138/2026165 to your computer and use it in GitHub Desktop.
Save Armen138/2026165 to your computer and use it in GitHub Desktop.
JS Global Instance
var Single = new function () {
var somethingPrivate = 138;
this.importantString = "something important";
this.importantObject = new ImportantObject();
this.importantMethod = function () {
returh somethingPrivate + 55;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment