我正在关注代码学院教程,我发现这很困难。
任务如下:
使用 for-in 循环打印出 nyc 的所有属性。
var nyc = {
fullName: "New York City",
mayor: "Michael Bloomberg",
population: 8000000,
boroughs: 5
};
// write your for-in loop here
for (var in nyc){
console.log(population);
}