2
05/11/2024 3:41 pm
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
05/11/2024 3:42 pm
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!");