Skip to content

Instantly share code, notes, and snippets.

@christophengelmayer
Created September 6, 2013 14:54
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 christophengelmayer/6464936 to your computer and use it in GitHub Desktop.
Save christophengelmayer/6464936 to your computer and use it in GitHub Desktop.
// Define a class like this
function Person(name, gender){
// Add object properties like this
this.name = name;
this.gender = gender;
}
// Add methods like this. All Person objects will be able to invoke this
Person.prototype.speak = function(){
alert("Howdy, my name is" + this.name);
}
// Instantiate new objects with 'new'
var person = new Person("Bob", "M");
// Invoke methods like this
person.speak(); // alerts "Howdy, my name is Bob"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment