数组对象Javascript中的数组

时间:2017-12-27 15:53:57

标签: javascript ecmascript-6

在Javascript对象中将数组存储在数组中的正确表示法是什么?

这样的事情:

let playfield = {
    rows: [
      boxes: []
    ],
  }

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

多维数组没有像对象这样的属性,它只是数组中的数组:

<div class="wrapper">
  <div class="circle">NA</div>
  <div class="author">
    <p>Some text</p>
   <p><strong>Should appear here</strong></p>
  </div>
</div>

.wrapper{
  display: table;
  table-layout: fixed;
  vertical-align: middle;
}

.circle,
.author{
  display: table-cell;
}