this is a typing sandbox, test your skills and type things!
SOME PROBLEMS WITH THIS:
1. some words won't type out sometimes
2. repeated letters in a word back-to-back will repeat (for example: typing 1 L in "hello" will type both of them)
3. some punctuation won't be seen by it
HOW I DID THIS: (prototype code i used)
<div id="anim"> </div> <script> var number =0; var str ="[put what you want here as the string]"; setInterval(function(){ anim.innerHTML= str; window.addEventListener("keydown", function(event) { if(event.key== str.charAt(number)){ str = str.replace(str.charAt(number), "f"); number +=1; } if(number == str.length){ str ="you finished!"; } }); },1);