Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Object</h1> <h2>The setInterval() Method</h2> <p id="demo"></p> <script> const element = document.getElementById("demo"); setInterval(function() {element.innerHTML += "Hello"}, 1000); </script> </body> </html>