DEV Community

Cover image for Number Guessing Game using javaScript
isurojit
isurojit

Posted on

Number Guessing Game using javaScript

Tried to create a simple yet complicated Number Guessing Game using #javascript. Event Delegation is used to target DOM elements. After creating this simple app even I can't win within the first try. Smiling face with tear try it here- https://bit.ly/32wBHRU code-https://codepen.io/isurojit/pen/GRZBdoq #HTML #css #ReactJS #webdev #webdeveloper

Top comments (5)

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.