Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

178
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda