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

Wednesday, December 5, 2012

Codecademy: Codeyear Crazy About Classes


//sample solution


// create your class here
function Candy(name){
this.name = name;
};

// this code should print "chocolate" then "gummy bears"
var chocolate = new Candy("chocolate");
console.log( chocolate.name );

var gummyBears = new Candy("gummy bears");
console.log( gummyBears.name );

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts