Así que, tengo el código, no está hecho, pero todo lo que quiero es mostrar un cuadro de alerta si escribo la palabra 'ayuda' y decir algo más si se ingresa algo más .if instrucción en javascript siempre verdadero
function prompter() {
var reply = prompt("This script is made to help you learn about new bands, to view more info, type help, otherwise, just click OK")
if (reply === 'help' || 'Help')
{
alert("This script helps you find new bands. It was originally written in Python 3.0.1, using Komodo IDE, but was then manually translated into Javascript. Please answer the questions honestly. If you have no opinion on a question, merely press OK without typing anything.")
}
else
{
alert("Press OK to continue")
}
};
pero, pase lo que pase, no importa qué, aparece el primer cuadro de alerta, incluso si presiona cancelar! ¿Cómo debo solucionar esto?
Apuesto a que esto le sucede a mucha gente ... gran pregunta, ¡nunca antes la había visto aquí! – Purag