### JavaScript 中的循環
這是 JavaScript 循環的綜合指南和範例:
### **1。 For 循環**
當您知道需要執行的確切迭代次數時,for 迴圈是理想的選擇。
#### **文法:**
for (initialization; condition; increment/decrement) { // Code to execute }
#### **範例:**
for (let i = 1; i <= 5; i++) { console.log(`Iteration: ${i}`); }
***說明:*
### **2。 While 迴圈**
當迭代次數未預先確定且取決於條件時,請使用 while 迴圈。
#### **文法:**
while (condition) { // Code to execute }
#### **範例:**
let count = 0; while (count < 5) { console.log(`Count is: ${count}`); count++; }
***說明:*
### **3。 Do-While 迴圈**
do-while 迴圈確保程式碼區塊至少執行一次,即使條件為 false。
#### **文法:**
do { // Code to execute } while (condition);
#### **範例:**
let number = 0; do { console.log(`Number is: ${number}`); number++; } while (number < 3);
***說明:*
### **4。 For-In 迴圈**
for-in 迴圈用於迭代物件的屬性。
#### **文法:**
for (key in object) { // Code to execute }
#### **範例:**
const person = { name: "John", age: 30, city: "New York" }; for (let key in person) { console.log(`${key}: ${person[key]}`); }
***輸出:*
name: John age: 30 city: New York
***說明:*
### **5。 For-Of 循環**
for-of 連結用於迭代可迭代對象,例如陣列、字串、映射或集合。
#### **文法:**
for (variable of iterable) { // Code to execute }
#### **範例:**
const fruits = ["Apple", "Banana", "Cherry"]; for (let fruit of fruits) { console.log(fruit); }
***輸出:*
Apple Banana Cherry
***說明:*
### **6。跳出循環**
使用break語句提前退出迴圈。
#### **範例:**
for (let i = 0; i < 10; i++) { if (i === 5) break; console.log(i); }
***輸出:*
for (initialization; condition; increment/decrement) { // Code to execute }
### **7。跳過迭代**
使用 continue 語句跳過目前迭代。
#### **範例:**
for (let i = 1; i <= 5; i++) { console.log(`Iteration: ${i}`); }
***輸出:*
while (condition) { // Code to execute }
### **8。巢狀循環**
循環可以相互嵌套以進行多維迭代。
let count = 0; while (count < 5) { console.log(`Count is: ${count}`); count++; }
***輸出:*
do { // Code to execute } while (condition);
### **9。無限循環**
小心那些永遠不會計算為 false 的條件的循環。
#### **範例:**
let number = 0; do { console.log(`Number is: ${number}`); number++; } while (number < 3);
注意:避免此類循環,除非有中斷機制。
### **10。循環數組**
for 和 for-of 記憶環通常與陣列一起使用。
#### **範例:**
for (key in object) { // Code to execute }
### **11。循環字串**
for-of 記憶體對於迭代字串的字元也很有幫助。
const person = { name: "John", age: 30, city: "New York" }; for (let key in person) { console.log(`${key}: ${person[key]}`); }
透過有效地理解和應用這些循環類型,您可以有效地處理 JavaScript 中的重複任務和資料結構。如果您需要澄清任何特定類型,請告訴我!
嗨,我是 Abhay Singh Kathayat!
我是一名全端開發人員,擁有前端和後端技術的專業知識。我使用各種程式語言和框架來建立高效、可擴展且用戶友好的應用程式。
請隨時透過我的商務電子郵件與我聯繫:kaashshorts28@gmail.com。
以上是JavaScript 循環綜合指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!