在JavaScript中创建关联数组?

您可以使用带有键和值对的对象数组在JavaScript中创建关联数组。

关联数组基本上是JavaScript中的对象,其中索引由用户定义的键替换。

示例

var customerDetails=

[

   {

      "customerId":"customer-1",

      "customerName":"David",

      "customerCountryName":"US"

   },

   {

      "customerId":"customer-2",

      "customerName":"Bob",

      "customerCountryName":"UK"

   },

   {

      "customerId":"customer-3",

      "customerName":"Carol",

      "customerCountryName":"AUS"

   }

]

for(var i=0;i<customerDetails.length;i++){

   console.log(customerDetails[i].customerName);

}

要运行上述程序,您需要使用以下命令-

node fileName.js.

在这里,我的文件名为demo115.js。

输出结果

这将产生以下输出-

PS C:\Users\Amit\JavaScript-code> node demo115.js

David

Bob

Carol

以上是 在JavaScript中创建关联数组? 的全部内容, 来源链接: utcz.com/z/316259.html

回到顶部