I have a set of multiple tables(2d arrays), which each have different contents, but are the same structure.
Now i want to choose between one of those tables.
My first instinct was to use a 3d array, but I read that you shouldn't use these what other ways could i use ? Below is my current idea. I could of course just have many indidual arrays without array, but that seems even worse.
tables:[[[1, 2, 3],
[1, 2, 3]],
[[4, 5, 6],
[4, 5, 6]]
[[7, 8, 9],
[7, 8, 9]]]