for in 遍历数组(不仅可以遍历对象,也可以遍历数组,毕竟数组只是一种特殊对象)var a = [1, 2, 3];
a.foo = true;
for (var key in a) {
console.log(key);
}
//
2018-07-30