[해결로 표시] JavaScript의 Annoy-O-Matic 작업

  

2
주제 스타터

I need to create code in JavaScript called: Annoy-O-Matic;

It should say in browser with alert: "Are we there yet?" and the user must say "yes" or "yeah" in order to alert the user: "YAY, we've made it!" - if not - it must repeat the question!

1개 답글
2

You can use this code, my friend:

var answer = prompt("Are we there yet?");
 
while (answer !== "yes" && answer !== "yeah") {
    var answer = prompt("Are we there yet?");
}
 
alert("YAY, we've made it!");
공유: