Skip to content

Instantly share code, notes, and snippets.

@ceth-x86
Created April 9, 2013 08:17
Show Gist options
  • Save ceth-x86/5343918 to your computer and use it in GitHub Desktop.
Save ceth-x86/5343918 to your computer and use it in GitHub Desktop.
Javascript : Prototype method
function MyClass(name) {
this.name = name;
}
MyClass.prototype.say_hello = function() {
alert(this.name);
}
var s = new MyClass("hello");
s.say_hello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment