JavaScript 中的for 迴圈類型
在JavaScript 中,有三種類型的for 迴圈:
1. 基本for 迴圈
#語法:
<code>for (initialization; condition; increment/decrement) { // 循环体 }</code>
2. for...in 迴圈
語法:
<code>for (variable in object) { // 循环体 }</code>
3. for...of 迴圈
語法:
<code>for (variable of iterable) { // 循环体 }</code>
以上是js中for迴圈有幾種方式的詳細內容。更多資訊請關注PHP中文網其他相關文章!