-1

如何打印此对象的属性值。目前它只打印属性名称而不是值。

                     var nyc = {
                     fullName: "New York City",
                     mayor: "Michael Bloomberg",
                     population: 8000000,
                     boroughs: 5
                     };


                    for(var x in nyc) { console.log(nyc[x]); }
4

1 回答 1

3

你应该可以说:

console.log(x + ": " + nyc[x]);

打印名称和值。

演示小提琴在这里

于 2013-07-14T14:27:44.073 回答