Skip to content

Instantly share code, notes, and snippets.

@bradpauly
Last active December 14, 2015 16:58
Show Gist options
  • Save bradpauly/5118587 to your computer and use it in GitHub Desktop.
Save bradpauly/5118587 to your computer and use it in GitHub Desktop.
Person = function(name) {
this.name = name;
}
var thomas = new Person('Thomas');
var amy = new Person('Amy');
Person.prototype.getName = function() {
return this.name;
}
thomas.getName.apply(amy);
delete Person.prototype.getName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment