Created
October 19, 2010 19:21
-
-
Save bgkittrell/634868 to your computer and use it in GitHub Desktop.
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.getName = function() { | |
return this.name; | |
} | |
var thomas = new Person('thomas'); | |
var amy = new Person('amy'); | |
thomas.getName.call(amy); | |
delete Person.getName; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment