Skip to content

Instantly share code, notes, and snippets.

@cburgdorf
Created March 4, 2011 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cburgdorf/855334 to your computer and use it in GitHub Desktop.
Save cburgdorf/855334 to your computer and use it in GitHub Desktop.
// 1. Write a class to support the following code:
// 2. Add a getName() method to all Person objects, that outputs
// the persons name.
var Person = function(name){
this.name = name;
};
Person.prototype.getName = function(){
alert(this.name);
};
var thomas = new Person("Thomas");
var amy = new Person("Amy");
thomas.getName();
amy.getName();
// 3. Write a statement that calls Thomas's getName function,
// but returns "Amy".
thomas.getName.call(amy);
// 4. Remove the getName() method from all Person objects.
delete Person.prototype.getName
thomas.getName(); //Fails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment