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

Thursday, December 6, 2012

Codecademy: Codeyear Instant Success


//sample solution


function Bike( color, numGears ) {
    this.color = color;
    this.numGears = numGears;
    this.numWheels = 2;
}

var myBike = new Bike("blue",6);

console.log("myBike is "+myBike.color+" and has "+myBike.numGears+" gears");

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts