Nested Array

Deeply nested array structure

JSON

[
  [
    1,
    2,
    [
      3,
      4
    ]
  ],
  [
    "a",
    [
      "b",
      [
        "c",
        "d"
      ]
    ]
  ],
  {
    "matrix": [
      [
        1,
        0
      ],
      [
        0,
        1
      ]
    ]
  }
]

Stats

Related tools

Other examples