Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

179
Views
Can I have multiple answers for a question in js?

I'm making a trivia game for my website, but I want to have multiple answers for questions, just to make it a bit easier for people to answer. Everything I tried was wrong, so what can I do? Javascript:

function quiz() {
var score=0;  
var totalQuestions=3;
alert("Welcome to my trivia game!");
alert("Make sure you answer all the questions.");

var q1=prompt("What war occured in 1812?");        
if(q1=="the 60 year war"    ) {
    score=score+1;  
    alert("Correct!"); 

} else {
    alert("Incorrect! The correct answer is the 60 year war!");  

}

var q2= prompt("When did the revolutionary war start?") ;       
if(q2=="1775"    ) {
     score=score+1; 
    alert("Correct!");  

} else {
    alert("Incorrect! The right answer is 1775!");  

}

var q3=prompt("If you're trying to fail and you succeed, did you fail or succeed?");  
if(q3=="you succeeded"  ) {
     score=score+1; 
    alert("Correct!");  

} else {
     alert("Incorrect! You succeeded!"); 

}

alert("You got " + score + " questions out of " + totalQuestions + " correct." );  

}

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can use OR "||" condition

if(q1=="the 60 year war" || "SECOND ANSWER HERE ") {
    score=score+1;  
    alert("Correct!"); 

} else {
    alert("Incorrect! The correct answer is the 60 year war!");  

}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!