Is it possible to have a jagged array in JavaScript?
Here is the format of the data I want to store in a jagged array:
(key)(value1, value2, value3)
Can I put this in a jagged array?
|
Is it possible to have a jagged array in JavaScript? Here is the format of the data I want to store in a jagged array:
Can I put this in a jagged array? |
||||
|
|
|
Yes, you can create that type of array using object or array literal grammar, or object/array methods. An array of arrays:
An object of arrays:
|
|||||||||
|