I'm trying to understand and work with arrays.
I've read the wiki and C2-article about it.
Using it in CC (v0.99.84), is hard to understand, because I wanted to see what's inside the array, using debug-mode, but I get a result I did not expect.
In the array-object I inserted the following properties:
x: 4
y: 4
Z: 0
My expection would be, that the array now looks like this:
0,0,0,0
0,0,0,0
0,0,0,0
0,0,0,0
When running debug mode, the instance of the array shows the following:
1,0,0 value: 0
2,0,0 value: 0
3,0,0 value: 0
4,0,0 value: 0
What does the "value" mean? Which value is it showing? Perhaps the value of a coordinate?