Skip to content

Instantly share code, notes, and snippets.

@Temirtator
Created January 17, 2021 11:44
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 Temirtator/0a6f1355560b8f616596ca029274d1d1 to your computer and use it in GitHub Desktop.
Save Temirtator/0a6f1355560b8f616596ca029274d1d1 to your computer and use it in GitHub Desktop.
Rendering UI, problem with event loop.
<div id="progress"></div>
<script>
function count() {
for (let i = 0; i < 1e6; i++) {
i++;
progress.innerHTML = i;
}
}
count();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment