Javascript Prompt Validation?
问题 I want to prompt the user to enter a sport (baseball, football, soccer, or track). Let's say I enter "Golf". How do I get it to keep asking me to enter a sport until I enter one of the valid sports? The sport determines what field they play on. Below is my code. var sport = prompt("What sport do you play? (Baseball, Football, Soccer, or Track)").toLowerCase (); switch (sport) { case "baseball": field = "Field 1"; break; case "football": field = "Field 2"; break; case "soccer": field = "Field