如何访问数组中对象的属性

时间:2020-02-01 01:44:55

标签: javascript arrays javascript-objects

如何打印数组中对象的所有属性。

例如,我有这个数组

const todo = [
  {
    text: "Water the plants",
    completed: true
  },
  {
    text: "Feed the dog",
    completed: false
  },
  {
    text: "Cook dinner",
    completed: true
  },
  {
    text: "Wash the dishes",
    completed: false
  },
  {
    text: "Clean the house",
    completed: false
  }
];

我可以同时打印/访问所有文本属性。

例如-如果我使用

console.log(todo.text)

我没有得到定义?您不能同时选择所有这些吗?

1 个答案:

答案 0 :(得分:0)

您需要遍历数组

const textArray = todo.map(item => item.text)