Skip to content

Instantly share code, notes, and snippets.

@dberringer
Forked from twyatt/gist:206596
Created September 18, 2010 00:56
Show Gist options
  • Save dberringer/585207 to your computer and use it in GitHub Desktop.
Save dberringer/585207 to your computer and use it in GitHub Desktop.
function Car () {
this.color = 'red';
//alert('car was made');
}
function Truck () {
// how do I call the parent constructor (i.e. make the alert box appear)
this.color = 'blue';
}
Truck.prototype = new Car();
Truck.prototype.wheels = 4;
t = new Truck();
alert(t.wheels);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment