Source Code:
(back to article)
<!DOCTYPE html> <html> <head> <title>Title of the Document</title> </head> <body> <div id="progressId"></div> <script> function count() { for(let i = 0; i < 1e6; i++) { i++; progressId.innerHTML = i; } } count(); </script> </body> </html>
Result:
Report an issue