Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
Sign in to follow this  
Yuval

Array question

Recommended Posts

I'm pretty new to this language and I wanted to ask something.

Can I put this array:

array = [[[1,2,3],[4,5,6]],[[1,2,3],[4,5,6]]];

in this way:

array = [
           [[1,2,3],[4,5,6]],
           [[1,2,3],[4,5,6]]
       ];

so I could see it much easier and it'll have the same affect?

Share this post


Link to post
Share on other sites
Yes you can do that.

thanks, you helped me alot.

Share this post


Link to post
Share on other sites
Sign in to follow this  

×