Skip to content

Instantly share code, notes, and snippets.

@jonatan-alama
Created April 2, 2016 01: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 jonatan-alama/7aec50f07f9dfbec4a9a32d7900cb759 to your computer and use it in GitHub Desktop.
Save jonatan-alama/7aec50f07f9dfbec4a9a32d7900cb759 to your computer and use it in GitHub Desktop.
var MyClass = (function () {
function MyClass() {
}
MyClass.prototype.myMethod = function () {
console.log("myMethod called");
};
return MyClass;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment