Is there any way to create a multi-layer array?
Hi, 1) I'm trying to create a multilayer array where one key, gets multiple layers. Is there any way to do this. For example, my jsl should look like: EX = Associative Array( {"Blue", "Green", "Red"}, {1, 2, 3}, {"Bear", "Gecko", "Rabbit"} );I'm trying to get it so that if I select "Blue", I get both 1 and "Bear". 2) Is there any way for an array to map for a function. For example, EX = Associativ...