Final Project

By Syeda Hossain

Background
What I Created

						
					

						q1a1.addEventListener("click", bird);
						q1a2.addEventListener("click", owl);

						q2a1.addEventListener("click", owl);
						q2a2.addEventListener("click", bird);

						q3a1.addEventListener("click", bird);
						q3a2.addEventListener("click", owl);
					

						function bird(){
  							birdScore += 1; 
  							questionCount += 1;
  							console.log("questionCount = " + questionCount + " birdScore = " + birdScore);

  						if (questionCount == 3) {
    						console.log("The quiz is done!")
    						updateResult();
  							}
  						}
					

						function owl(){
  							owlScore += 1;
  							questionCount += 1;
							console.log("questionCount = " + questionCount + " owlScore = " + owlScore);

  						if (questionCount == 3) {
    						console.log("The quiz is done!")
    						updateResult();
  							}
						}
					

						function updateResult() {
  							if (birdScore >= 2) {
    							result.innerHTML = "You are an Early Bird!";
    							console.log("You are an Early Bird!")
  							} else if (owlScore >= 2) {
    							result.innerHTML = "You are a Night Owl!";
    							console.log("You are a Night Owl!")
  							}
						}
					
Thanks!