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