for (let i = 0; iFor...of 迴圈(遍歷陣列)
const fruits = ['apple', 'banana', 'orange']; for (const fruit of fruits) { console.log(fruit);For...in 迴圈(迭代物件屬性)
const person = { name: 'John', age: 30, job: 'Developer' }; for (const key in person) { console.log(`${key}: ${person[key]}`); }forEach迴圈(陣列方法)
const numbers = [1, 2, 3, 4, 5]; numbers.forEach((number, index) => { console.log(`Index ${index}: ${number}`); });While 循環(技術上不是 for 循環,但值得一提)
let count = 0; while (count這些範例示範了在 JavaScript 中迭代的各種方法,每種方法都適合不同的場景和資料結構。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3