Guest User

Untitled

a guest
Oct 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. var counter = 0,
  2. timer;
  3.  
  4. timer = setInterval( function () {
  5. counter += 1;
  6. if (counter < 95221) {
  7. console.log(String.fromCharCode(counter));
  8. } else {
  9. clearTimeout(timer);
  10. }
  11. },100);
Add Comment
Please, Sign In to add comment