Created
January 17, 2014 07:35
-
-
Save aszel/8469704 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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