The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 2 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
I can not for the life of me figure out what is the error in the follow Javescript code.
Â
function main()
{
   var highScore;
   var lowScore;
  Â
   var numExams = 5;
   var examArray = [];
  Â
   for (ctr = 0; ctr < numExams; ctr++)
   {
       examArray[ctr] = Number(prompt("Enter the score for exam " + ctr));
   }
  Â
   highScore = examArray[0];
   lowScore = examArray[0];
  Â
   for (ctr = 0; ctr < numExams; ctr++)
   {
       if (examArray[ctr] > highScore)
       {
           highScore = examArray[ctr];
       }
       else
       {
           lowScore = examArray[ctr];
       }
   }
   console.log("High score is " + highScore);
   console.log("low score is " + lowScore);
}
main();