Suppose I need an array with tag names so that I can easily call a specific row by using its tag name, like myArray['tag_one'][2] to access the 3rd element under the tag_one identifier.
Is there a way to achieve this functionality?
Perhaps something similar to:
var myArray=[
tag_one=[1,2,3],
tag_two=[11,22,33],
tag_three=[111,222,333]
]
Apologies for any mistakes in my English. Thank you in advance!