Prompting User to Try Again! | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 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 šŸ™

9th Apr 2018, 10:59 AM
Raaja Thalapathy
Raaja Thalapathy - avatar
4 Respostas
+ 9
Modification to @areila's code - var number; while(isNaN(number)){ number = prompt("No.") }
9th Apr 2018, 11:19 AM
Nikhil
Nikhil - avatar
+ 3
var number; while(number.isNan()){ number = prompt(ā€œPlease input a number:ā€) }
9th Apr 2018, 11:09 AM
Ariela
Ariela - avatar
+ 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! šŸ˜ŠšŸ˜ŠšŸ™ŒšŸ»
9th Apr 2018, 11:17 AM
Raaja Thalapathy
Raaja Thalapathy - avatar
+ 2
@Nikhil, Thanks bro! Itā€™s working now šŸ˜šŸ˜šŸ‘ŒšŸ»šŸ‘šŸ»
9th Apr 2018, 11:23 AM
Raaja Thalapathy
Raaja Thalapathy - avatar