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
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (5)
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.
isFinite() . solved it
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
Lol! That was a silly mistake. Thanks, mate now it is fixed.
Yes. there is a simple fix for it. Will do it.