+ 2
Prompting User to Try Again!
Iâm a beginner. Iâm desperate to know how this is done, - I can prompt a user to type something, - But I donât know how to prompt user when they donât meet my requirement, Like I want the input to be a Number or a String Of Words; So in case of a number not written the result is NaN. - Now I want to know rather than NaN, how to alert the user to type the correct requirement and Type a code where itâs an infinite loop until they type the correct number or string? Hope Someone Helps! Thanks đ
4 Respostas
+ 9
Modification to @areila's code -
var number;
while(isNaN(number)){
number = prompt("No.")
}
+ 3
var number;
while(number.isNan()){
number = prompt(âPlease input a number:â)
}
+ 2
@Ariela, Thatâs all I must type to prompt user and say type again if they entered the wrong value? Coz thatâs not working thatâs y asked!
Btw thanks for seeing my question and answering it! đđđđ»
+ 2
@Nikhil, Thanks bro! Itâs working now đđđđ»đđ»