Jump to content
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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×