Quotes help make search much faster. Example: "Practice Makes Perfect"
Wednesday, December 5, 2012
Codecademy: Codeyear Putting Objects to Use
//sample solution
// make a Card constructor here. It should take two parameters
// representing the suit and number of the card to be created
function Card(suit, number){ this.suit = suit; this.number = number;
}
No comments:
Post a Comment