Day # 85: Speed typing
Handling text that is being entered by the user is essential for any frontend developer. At the end of the day, we must be able to control and process data so that it can be used for other purposes afterwards.
With that in mind, I decided to create a game for today’s website that handles data being typed by the user and at the same time it includes a time counter to make it more fun.
The key here is to compare the text that is being entered with the text that is initially displayed. Whoever matches that text wins the game. We can achieve that by using Javascript, since it allows us to process the data, compare it and decide if the user wins the game or not.
Comments
Post a Comment