What is the best method utilizing javascript to parse this JSON response:
{
    "records":[{
         "id":"recV4gf3nPUzO980w",
         "fields":{
            "truck name":"Darla's dumpling cart",
            "address":"150 W 57th St, New York, NY"
         },
         "createdTime":"2018-04-27T22:48:13.000Z"
    }]
} 
So that only the "fields" data is returned, This is a representation of only one record in records and I need to create obj.records.fields where all fields are presented as an array.
 
     
     
     
    