Created
October 10, 2009 04:29
-
-
Save twyatt/206596 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
Car = function() { | |
this.color = 'red'; | |
alert('car was made'); | |
} | |
Truck.prototype = new Car(); | |
Truck = function() { | |
// how do I call the parent constructor (i.e. make the alert box appear) | |
} | |
t = new Truck(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment