I'm really struggling to create a valid multidimensional JavaScript array with the following basic format:
var countries = [
{
"country": "UK",
"properties": {"value1", "value2", "value3"}
},
"country": "Spain",
"properties": {"value4", "value5", "value6"}
}
]
Can someone tell me what I'm doing wrong please?