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!
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!");
622 questions
979 answers
129 comments
53 users