Created
April 7, 2011 13:06
-
-
Save tschmidt/907746 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
var Person = function (name) { | |
this.name = name; | |
} | |
Person.prototype.getName = function () { | |
console.log(this.name); | |
} | |
var thomas = new Person("Thomas"); | |
var amy = new Person("Amy") | |
thomas.getName(); | |
thomas.getName.call(amy); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment