Created
August 14, 2011 22:52
-
-
Save aaronpowell/1145416 to your computer and use it in GitHub Desktop.
Q6 - What's old is new
This file contains 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
var Person = function(name) { | |
this.name = name; | |
} | |
Person.prototype.sayHello = function() { | |
console.log('Hello, my name is ' + this.name); | |
} |
This file contains 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
var aaron = Person('Aaron'); | |
aaron.sayHello(); | |
var john = new Person('John'); | |
john.sayHello(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment