I've been told that arrays of arrays are not allowed in JavaScript. Is this still the case? What about the following object – is it valid?
object: { array: [ [0],
['1', '2']
]
}
Could someone provide me with examples of how to use this? I have been using arrays of strings as a temporary solution.