Skip to content

Instantly share code, notes, and snippets.

@incompl
Created November 14, 2012 17:33
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 incompl/4073531 to your computer and use it in GitHub Desktop.
Save incompl/4073531 to your computer and use it in GitHub Desktop.
if(typeof BladeClassLibrary1 == 'undefined') BladeClassLibrary1 = {};
BladeClassLibrary1.Class1 = (function() {
function Class1() {
this.myString = 'Hello';
}
var p = Class1.prototype;
p.myString = null;
return Class1;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment