HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <p>External javascript will execute only after parsing this entire page.</p> <script src="/async-1.js" async> </script> <script src="/async-2.js" async> </script> <script> for(var i=0; i<=10000;i++){ if(i == 10000){ document.write(i); } } </script> <p>Completed.</p> </body> </html>
OUTPUT
×

Save as Private