Skip to content

Instantly share code, notes, and snippets.

@aristidb
Created October 27, 2008 00:22
Show Gist options
  • Save aristidb/19976 to your computer and use it in GitHub Desktop.
Save aristidb/19976 to your computer and use it in GitHub Desktop.
function MyClass(x) {
this.value = x;
}
MyClass.prototype = {
'print': function() { print(this.value); }
};
var o = new MyClass("hello world");
o.print();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment