如何显示没有索引的数组?

时间:2018-09-16 22:57:31

标签: javascript arrays object

我有一个来自Firestore的数组,必须将其放入完整日历的事件中。

我想要的是这样显示

[
 {
   title: '',
   start:''
 }
]

不是这个

[{…}]
0
:
{title: "namee", start: "2018-09-19"}
1
:
{title: "namee", start: "2018-09-19"}
2
:
{title: "STI Night", start: "2018-09-18"}
length
:
3
__proto__
:
Array(0)

1 个答案:

答案 0 :(得分:2)

您可以使用space的第三个JSON.stringify参数来漂亮地打印数组。请参见docs中的JSON.stringify

const a = [
  {
    title: '',
    start: ''
  }
];

console.log(JSON.stringify(a, null, 2));