function Car (pMake, pModel, pColor){
this.make = pMake
this.model = pModel
this.color = pColor
}
Car.prototype.showCar = function {
alert(this.make + " " + this.model + " " + this.color);
}
function Car (pMake, pModel, pColor){
this.make = pMake
this.model = pModel
this.color = pColor
}
Car.prototype.showCar = function {
alert(this.make + " " + this.model + " " + this.color);
}