这段代码(JS)有什么区别?

发布于 2024-11-04 01:48:02 字数 226 浏览 0 评论 0原文

我想知道这段代码有什么区别:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

×纯※雪 2024-11-11 01:48:02

第一个是包含一个元素的数组,该元素是 {"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 could c.test.

薯片软お妹 2024-11-11 01:48:02

第一个 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 typing c instanceof Array in the Firebug console and run it (returns true). To verify that an Array is also an Object do the same for c instanceof Object (returns true).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文