var myPlants = [
  {
    type: "flowers",
    list: [
      "rose",
      "tulip",
      "dandelion"
    ]
  },
  {
    type: "trees",
    list: [
      "fir",
      "pine",
      "birch"
    ]
  }
];

var secondTree = myPlants[1].list[1];


结果将是“ pine”,但在第二个元素中,为什么是myPlants [1]?

最佳答案

数组通常从索引0开始。

尝试myPlants [0]。

09-25 16:18