Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, December 6, 2012

Codecademy: Codeyear New Cars


//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


This is an example of scrolling text using Javascript.

Popular Posts