SOURCE

// console.log(Array(5).fill(null).map((_,i)=>{
//     //console.log(_)
//     return '123asd'
// }))

let a = ["eat", "tea", "tan", "ate", "nat", "bat"];
let b = {a:'asd',b:'qwe',c:'ggff'}

//forEach无法跳出循环
// a.forEach(item=>{
//     if(item == 'tea')return;
//     console.log(1)
// })

//for of 适合遍历数组 value = 数组种每项
// for(let key of a){
//     console.log(key)
//     if(key == 'tea') break;
//     console.log(2)
// }

for(let key of b){
    console.log(key)
}

//for in 适合遍历对象 value = 键名
// for(let value in a){
//     //console.log(typeof value) string
//     console.log(value)//遍历出数组索引 0 1 2 3... 
// }

// for(let value in b){
//     //console.log(value) // a  b  b
//    // console.log(b[value]) asd qwe ggff
// }
console 命令行工具 X clear

                    
>
console