这段代码(JS)有什么区别?
我想知道这段代码有什么区别:
var c = [{"test": 1}];
这段代码
var c = {"test": 1};
Firebug 说它们都是对象,但是如果你对第一个示例执行 console.log(c.test) ,它将返回“未定义”。所以我有点想知道这是什么意思以及如何访问第一个示例?
I'm wondering what's the difference between this code:
var c = [{"test": 1}];
and this code
var c = {"test": 1};
Firebug says both of them are objects but if you do console.log(c.test) with the first example it'll return "undefined". So I'm kind of wondering what's that all about and how should the first example be accessed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
第一个是包含一个元素的数组,该元素是
{"test": 1}
对象,而第二个是{"test": 1}
对象本身。因此,对于第一个,您可以
c[0].test
,而对于第二个,您可以c.test
。The first is an array containing one element which is the
{"test": 1}
object while the second is the{"test": 1}
object itself.So with the first you could
c[0].test
while with the second you couldc.test
.第一个 c 是一个包含对象的数组,第二个 c 是一个对象。
在 JavaScript 中,一切都是对象,所以这就是为什么 Firebug 说它们都是对象。要从第一个 c 获取 test 属性,您必须引用数组的第一个元素(即实际的对象),因此
c[0].test
将返回 1。如果您需要知道如果 c 是数组(的实例),请尝试在 Firebug 控制台中输入c instanceof Array
并运行它(返回true
)。要验证数组是否也是对象,请对c instanceof Object
执行相同的操作(返回true
)。The first c is an Array containing an Object, the second an Object.
In JavaScript everything is an Object, so that's why Firebug says they are both objects. To get the test property from the first c, you have to reference the first element of the Array (being the actual Object), so
c[0].test
would return 1. If you need to know if c is (instance of) an Array, try typingc instanceof Array
in the Firebug console and run it (returnstrue
). To verify that an Array is also an Object do the same forc instanceof Object
(returnstrue
).