Love beautiful code? We do too.
Vòng lặp 'for' là mẫu vòng lặp gọn nhất. Nó bao gồm 3 phần quan trọng:
Bạn có thể đặt cả 3 phần trong một dòng đơn phân biệt nhau bởi dấu chấm phảy.
Sơ đồ thực hiện của một vòng lặp for trong JavaScript sẽ là:
for (initialization; test condition; iteration statement){
Statement(s) to be executed if test condition is true
}
Bạn thử ví dụ sau để học cách vòng lặp for làm việc trong JavaScript.
<html>
<body>
<script type="text/javascript">
<!--
var count;
document.write("Starting Loop" + "<br />");
for(count = 0; count < 10; count++){
document.write("Current Count : " + count );
document.write("<br />");
}
document.write("Loop stopped!");
//-->
</script>
<p>Set the variable to different value and then try...</p>
</body>
</html>
Starting Loop
Current Count : 0
Current Count : 1
Current Count : 2
Current Count : 3
Current Count : 4
Current Count : 5
Current Count : 6
Current Count : 7
Current Count : 8
Current Count : 9
Loop stopped!
Set the variable to different value and then try...
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời