var myPlants = [
{
type: "flowers",
list: [
"rose",
"tulip",
"dandelion"
]
},
{
type: "trees",
list: [
"fir",
"pine",
"birch"
]
}
];
var secondTree = myPlants[1].list[1];
结果将是"松"但它在第二个元素中,为什么它是myPlants [1]?
答案 0 :(得分:2)
数组通常从索引0开始。
尝试myPlants [0]。
答案 1 :(得分:1)
1
表示索引从0
开始的第二项。
myPlants[1].list[1];
转换为myPlants
数组中的第二项,以及该第二项的列表属性数组的第二项。