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

Thursday, December 6, 2012

Codecademy: Codeyear Public Property


//sample solution


function Car( listedPrice, color ) {
    this.price = listedPrice;
    this.color = color;
   
    this.honk = function() {
        console.log("BEEP BEEP!!");
    }
}

var blueCar = new Car( 1000, "blue");

console.log("The price of blueCar is " + blueCar.price);

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts