<html> <head> <script language="javascript"> document.write('Bắt đầu vòng lặp <br/>'); for(var x = 0; x <= 10; x ++){ if(x == 8){ document.write('continue <br />'); continue; } document.write(x + '<br />'); } document.write('Kết thúc vòng lặp'); </script> </head> <body> </body> </html>