//sample solution
function Car( price, color ) {
this.price = price;
this.color = color;
this.honk = function() {
console.log("BEEP BEEP!!");
};
}
var blueCar = new Car( 1000, "blue");
// Make an object for the red car here.
var redCar = new Car(2000, "red");
console.log("My redCar is " + redCar.color);
No comments:
Post a Comment