Skip to content

Instantly share code, notes, and snippets.

View dberringer's full-sized avatar

Douglas Berringer dberringer

  • Calix
  • North Bay, CA
View GitHub Profile
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';
}