Last active
December 14, 2015 16:58
-
-
Save nerdpruitt/5118640 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
// 1. Write a class to support the following code: | |
function Person(name){ | |
this.name = name; | |
} | |
var thomas = new Person('Thomas'); | |
var amy = new Person('Amy'); | |
thomas.name // --> "Thomas" | |
// 2. Add a getName() method to all Person objects, that outputs | |
// the persons name. | |
Person.prototype.getName = function() { | |
return this.name; | |
} | |
thomas.getName() // --> "Thomas" | |
// 3. Write a statement that calls Thomas's getName function, | |
// but returns "Amy" | |
// literally call the getName function of the Thomas object instance, but you swap out the object. | |
thomas.getName.call(amy); | |
// 4. Remove the getName() method from all Person objects. | |
delete Person.prototype.getName; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment