Skip to content

Instantly share code, notes, and snippets.

@bgkittrell
Created October 19, 2010 19:21
Show Gist options
  • Save bgkittrell/634868 to your computer and use it in GitHub Desktop.
Save bgkittrell/634868 to your computer and use it in GitHub Desktop.
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