I was under the impression that an array of arrays is not allowed in javascript. Is that still true? Is the following object valid?
object: { array: [ [0],
['1', '2']
]
}
Can someone please point me to examples of usage? I've been using arrays of strings as a workaround.