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

Thursday, December 6, 2012

Codecademy: Codeyear Similar Specs


//sample solution


function RedCar( price ) {
    this.price = price;
    this.color = "red";
   
    this.honk = function() {
        console.log("BEEP BEEP!!");
    };
}

//create BlueCar object
function BlueCar( price ) {
    this.price = price;
    this.color = "blue";
   
    this.honk = function() {
        console.log("BLARE!");
    };
}

var oldBlue = new BlueCar(100);

oldBlue.honk();

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts