top of page
2D ARRAYS
A 2D Array is an array of arrays
The imagine on the left is how you should imagine what a 2D array is.
Initializing 2D Array
There are two ways to initialize a 2D Array:
​
1. Add values automatically with the {} brackets
​
2. Create space and add the values in later
Change Element Values
To change an element values in a 2D Array you would:
1. call the array element
2. set it equal, =, to the element
bottom of page