DEV Community

Discussion on: Number Guessing Game using javaScript

Collapse
 
littlephone profile image
littlephone

I think I found a bug in the program. The program didn't validate whether it is an integer or not. Try inputting decimals like 1.35 or 1.6, the program still runs without prompting any errors.

Collapse
 
isurojit profile image
isurojit

isFinite() . solved it

Collapse
 
littlephone profile image
littlephone

Yup. But another bug is introduced. :D
That is: if you inputted decimals, then you input an integer, the error message will not be cleared

Thread Thread
 
isurojit profile image
isurojit

Lol! That was a silly mistake. Thanks, mate now it is fixed.

Collapse
 
isurojit profile image
isurojit

Yes. there is a simple fix for it. Will do it.