Arrays
Arrays in Internet Object
An array is represented using the pair of square brackets surrounding zero or more values. Each value is separated by commas. The array starts with an open square bracket ([ U+005B)
and ends with a close square bracket (] U+005D)
.
An Array Walkthrough
A string array.
An object array.
An array with mixed values.
Multi-dimensional Arrays
A Two-dimensional array represents rows and columns.
A three-dimensional array is a multidimensional array that represents a collection of two-dimensional arrays.
Last updated