I have an array comprising records
v = [{stringA, stringB, arr[{stringC,stringD}]
When I try to extract the value of stringA and stringB, Javascript returns {Object, Object}
I am trying to use
strX = v[4].arr[2].stringC;
(this approach works when extracting stringA and stringB, but not when extracting stringC)
Please, does anyone know how this should be done?