I have the following JSON object:
{   
"features": [{      
    "properties": {
        "lat": "1.2345",
        "location c": "aaa",
        "location q": "cccc"
    }
    }
 ]
} 
So I can fetch properties and what next?
As you see above mentioned fields have 2 words.
 var location_c =  properties.get(/*???*/);
How can I do that in JavaScript?
 
     
    