Skip to content

Instantly share code, notes, and snippets.

@kmaida
Last active August 29, 2015 14:11
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 kmaida/69421b72678a9bf35a2a to your computer and use it in GitHub Desktop.
Save kmaida/69421b72678a9bf35a2a 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 Bob = new Person('Bob', 'M');
// Invoke methods like this
Bob.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