Hi, I’m trying to work out how to grab the values of each individual entry in this table via a for loop, but nothing that I’ve tried has worked so far.
And then print the locationName values:
example1
example2
example3
Here’s an example table:
local exampleTable = {
"CallingPoints": [
{
"callingPoint": [
{
"locationName": "example1"
},
{
"locationName": "example2"
},
{
"locationName": "example3"
},
],
]
}
Any help would be greatly appreciated