HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <p>This for loop will execute 3 times.</p> <script> for(var i = 0; i < 3; i++) document.write("Hello world <br>"); </script> </body> </html>
OUTPUT
×

Save as Private