Skip to content

Instantly share code, notes, and snippets.

@flpms
Last active May 25, 2020 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flpms/45abcda29624d9af572f39cc87f311de to your computer and use it in GitHub Desktop.
Save flpms/45abcda29624d9af572f39cc87f311de to your computer and use it in GitHub Desktop.
const str = ['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd'];
let count = 0;
window.setInterval(() => {
console.log(str[count]);
count++;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment