I wish to create a multi-dimensional array in the format as:
var sizes = [
"p" = ["1em", "2em", "3em"],
"h1" = ["2em", "3em", "4em"]
];
After, I can them loop through sizes and get the array elements for each element....
How is this achievable, tried many ways just doesn't seem to be working. Regards