我想使用 for in oop 来获取所有属性的值,但不知道如何。我正在关注的教程给出了我如何做到这一点的这个例子,但我不明白。
for(var x in dog) { console.log(dog[x]); }
var nyc = {
fullName: "New York City",
mayor: "Michael Bloomberg",
population: 8000000,
boroughs: 5
};
// write a for-in loop to print the value of nyc's properties