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

Monday, December 3, 2012

Codecademy: Codeyear All together now!


//sample solution


// Runner times
var carlos = [9.6,10.6,11.2,10.3,11.5];
var liu = [10.6,11.2,9.4,12.3,10.1];
var timothy = [12.2,11.8,12.5,10.9,11.1];

// Define the function calculateAverage
var calculateAverage = function (raceTimes) {
  var totalTime;
  var averageTime=0;
  for ( i = 0; i < raceTimes.length; i++ ) {
    totalTime = (totalTime || 0) + raceTimes[i];
  }
// assign variable averageTime
  averageTime = totalTime/raceTimes.length;
  return averageTime;
};

var isQualified = function (runner) {
  // Assign the variable averageTime
  var averageTime = calculateAverage(runner);
  if ( averageTime >= 11.5 ) {
    // Times greater than or equal to 11.5 are too slow
console.log("Close, but you didn't make the cut.");
  } else if ( averageTime < 11.5 ) {
// An average time of less than 11.5 can join the team
console.log("Welcome to the team, speedy!");
  }
};

// Call the function isQualified on liu and timothy
isQualified(liu);
isQualified(timothy);

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts