[Solved] Annoy-O-Matic Task in JavaScript

  

2
Topic starter

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 Answer
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!");
Share: