Quotes help make search much faster. Example: "Practice Makes Perfect"
Monday, December 3, 2012
Codecademy: Codeyear Did I make the team?
//sample solution
var isQualified = function(averageTime){ if(averageTime>=11.5){ console.log("Close, but you didn't make the cut."); } else { console.log("Welcome to the team, speedy!"); }
};
isQualified(11.3);
isQualified(12.1);
No comments:
Post a Comment