for...in 是遍历键名, fo...of 是遍历键值 let arr = ["a","b"];for (a in arr) { console.log(a); // 1,2}for (a of arr) { console.log(a); // a,b}